由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - SOS: How to rename a variable in Matlab?
相关主题
matlab: find main workspace variable?不用STL, C++里怎么realloc?
我的matlab 抽风了。。。。关于inserter
How solid it is: c++/c# call Matlab libraryany good open source memory pool for C
请教windows 7 怎么增加堆栈上限c字符串内存分配问题
python 区别于其他语言的根本?c的问题(2)
register variable用vc express 打开一个solution每次都报错关闭
lambda的一个疑问how to resolve this problem?
sql 数据是存在哪里 (转载)how to rename a exe file?
相关话题的讨论汇总
话题: matlab话题: rename话题: variable话题: sos
进入Programming版参与讨论
1 (共1页)
x****u
发帖数: 473
1
How to rename a variable in Matlab using one command without reallocating
memory?
Thanks a lot!
t****t
发帖数: 6806
2
matlab variable is copy-on-write, so you can just use
b=a;
clear a;
then a is "renamed" to b. very few memory operation is involved in this
process.

【在 x****u 的大作中提到】
: How to rename a variable in Matlab using one command without reallocating
: memory?
: Thanks a lot!

1 (共1页)
进入Programming版参与讨论
相关主题
how to rename a exe file?python 区别于其他语言的根本?
visual c++ project property设置问题register variable
javascript应该叫cscript才对.lambda的一个疑问
菜鸟问题 关于自动批处理sql 数据是存在哪里 (转载)
matlab: find main workspace variable?不用STL, C++里怎么realloc?
我的matlab 抽风了。。。。关于inserter
How solid it is: c++/c# call Matlab libraryany good open source memory pool for C
请教windows 7 怎么增加堆栈上限c字符串内存分配问题
相关话题的讨论汇总
话题: matlab话题: rename话题: variable话题: sos