How do I change workspace variable?
2 次查看(过去 30 天)
显示 更早的评论
I am doing a bubble sort in MATLAB and when I run my code, the array is popping up in the workspace and it is named ans
I need that to be named something else. How would one change that ans to a different variable?
0 个评论
采纳的回答
更多回答(2 个)
Image Analyst
2014-9-11
That's what MATLAB calls a result of an expression when you aren't accepting the result into your own variable. For example
4*pi % Not being set equal to anything, it's just by itself.
To get rid of it, simply accept the answer into a variable of your own naming:
myVar = 4 * pi
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!