Variables are stored but not shown is the workspace?
4 次查看(过去 30 天)
显示 更早的评论
I type in ans=1 in command window and I can recall it and also can find it in the control tab. But the variable just does not appear in the workspace. I reviewed some questions but all of them are about functions or scripts. Please help me.![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1426958/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1426958/image.png)
0 个评论
回答(2 个)
John D'Errico
2023-7-5
编辑:John D'Errico
2023-7-5
clear
x = 1;
ans = x+1
whos
As you can see, the variable ans does appear. HOWEVER, you should never be using ans as a variable! It is a reserved name, a variable name that will be overwritten frequently, and not under your control.
Even on my own computer, ans does show up in the workspace pane. So I am not sure what exactly you did. If you have some behavior that is confusing you, then you need to be more clear about it.
0 个评论
Fangjun Jiang
2023-7-5
The variable name "ans" is reserved by MATLAB.
type "doc ans" to read it
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!