Quantcast
Channel: MATLAB Central Newsreader Recent Posts
Viewing all articles
Browse latest Browse all 19628

Re: How to find type of a variable?

$
0
0
"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

Viewing all articles
Browse latest Browse all 19628

Trending Articles