>>x gives 1.598........ when x hasnt been assigned
2 次查看(过去 30 天)
显示 更早的评论
I thought I was on a clean sheet with x,y,z default to zero
>> x
x =
1.598053182478617
>>
why do I get this?
*******************
different variable y
>> y
y =
Columns 1 through 3
-0.000000000000000 -0.024544308631620 -0.049092313081569
Columns 4 through 6
-0.073647707492896 -0.098214182642028 -0.122795424215234
Columns 7 through 9...................................... to cols 513
**************************
and again with z
>> z
z =
2.557407724654902
>>
am I not resetting correctly?
I thought that "click clear" command page would reset all?
Sorry for newbie dumb question, I dont know where to go on this
Robin
0 个评论
采纳的回答
Image Analyst
2019-12-14
Put this in the command window:
>> workspace
Now, do you see x, y, and z in the workspace panel BEFORE you type x in the command window? Yes you do. Double click on x in the workspace panel to bring it up in the variable editor. Do you see a value there? Yes. Now type x on the command line and you will see the same value.
Do you want to get rid of all variables? Do this
>> clearvars
Now when you type x it will say
Unrecognized function or variable 'x'.
0 个评论
更多回答(1 个)
robin teslar
2019-12-14
11 个评论
Walter Roberson
2019-12-16
In my experience, when GUI are being discussed, the convention to indicate selection of a sub-entry or a sequence of steps some of which might only be possible on menus triggered by earlier stages, is to use -> between the parts. Using / is usually reserved for command line usage on Unix or DEC VMS systems (but not CP/M because CP/M predated hierarchy of command options)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Performance and Memory 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!