From: nethaji anandhavalli on
for 1e4=10khz
similarly is there any variables, i mean 1e1,1e2,1e3..... is available?
what does it mean?
what are the corresponding values for these variables?
From: someone on
"nethaji anandhavalli" <mydreamprojects(a)yahoo.com> wrote in message <hq7no7$hs8$1(a)fred.mathworks.com>...
> for 1e4=10khz
> similarly is there any variables, i mean 1e1,1e2,1e3..... is available?
> what does it mean?
> what are the corresponding values for these variables?

It is not clear (at least to me) what you are asking.
I don't understand the syntax.
Is this supposed to be part of a for loop?

Variable names begin with a letter.
1e4 is scientific notation for 1X10^4 = 10000
10khz = ???
From: John D'Errico on
"nethaji anandhavalli" <mydreamprojects(a)yahoo.com> wrote in message <hq7no7$hs8$1(a)fred.mathworks.com>...
> for 1e4=10khz
> similarly is there any variables, i mean 1e1,1e2,1e3..... is available?
> what does it mean?
> what are the corresponding values for these variables?

1e4 is NOT a valid name for a variable in matlab.
It is just a number, equal to 10000.

John