help-octave
[Top][All Lists]
Advanced

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

Re: number or date? how to know type data


From: khalil2535
Subject: Re: number or date? how to know type data
Date: Sun, 10 Mar 2019 09:20:43 -0500 (CDT)

Hello

Try 'whos' for example see this code

>> x=1
x =  1
>> y = 'Hello World!';
>> z = uint8(x);
>> whos
Variables in the current scope:

   Attr Name        Size                     Bytes  Class
   ==== ====        ====                     =====  =====
        x           1x1                          8  double
        y           1x12                        12  char
        z           1x1                          1  uint8

Total is 14 elements using 21 bytes

>>



--
Sent from: http://octave.1599824.n4.nabble.com/Octave-General-f1599825.html



reply via email to

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