"Yaroslav Bulatov" <yaroslavvb@gmail.com> wrote in message <h23dfa$bb3$1@fred.mathworks.com>...
> Workspace window doesn't always give type of variables...is there a command to find out type of a given symbol?
You can use the following example :
b = 2
b =
2
>> a = 'Hi'
a =
Hi
>> class(b)
ans =
double
>> class(a)
ans =
char
> Workspace window doesn't always give type of variables...is there a command to find out type of a given symbol?
You can use the following example :
b = 2
b =
2
>> a = 'Hi'
a =
Hi
>> class(b)
ans =
double
>> class(a)
ans =
char