help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Variable names


From: Sergei Steshenko
Subject: Re: Variable names
Date: Wed, 18 Jun 2008 10:33:19 -0700 (PDT)


Applications From Scratch: http://appsfromscratch.berlios.de/


--- On Wed, 6/18/08, asha g <address@hidden> wrote:

> From: asha g <address@hidden>
> Subject: Variable names
> To: address@hidden
> Date: Wednesday, June 18, 2008, 6:51 AM
> This question might seem very trivial to some - but it is
> important to me - so I am asking. 
> Can octave distinguish between variables named :
> 
> alpha and alphan or alpha1?
> h and hd ?
> V and vvvv?
> m and mmmm?
> minf and mInf- will it have doubts abt Inf and machine Inf
> ? 
> 
> Thanks
> Asha 
> 
> 
>       
> _______________________________________________
> Help-octave mailing list
> address@hidden
> https://www.cae.wisc.edu/mailman/listinfo/help-octave

???

"
octave:1> h = 1
h =  1
octave:2> hd = 2
hd =  2
octave:3> h
h =  1
octave:4> hd
hd =  2
octave:5> V = 3
V =  3
octave:6> vvvv = 4
vvvv =  4
octave:7> V
V =  3
octave:8> vvvv
vvvv =  4
octave:9> minf =10
minf =  10
octave:10> mInf = 11
mInf =  11
octave:11> minf
minf =  10
octave:12> mInf
mInf =  11
octave:13>
".

Regards,
  Sergei.


      


reply via email to

[Prev in Thread] Current Thread [Next in Thread]