How to re-produce an existing variable in the script without using it?
7 次查看(过去 30 天)
显示 更早的评论
Hi, this sounds silly... I have a variable in my workspace... say it is called A of size (200,1). Each element of it is just a number, e.g. A=[3;3;444;555;...]... Now I would like to define the exact same A in the script without using the A in workspace... Of course, I can do it manually A=[3;3;444;555;...], but that takes forever. Is there a smart way that I can define A in script without having to have A in the workspace? Thanks!
1 个评论
Stephen23
2015-11-19
编辑:Stephen23
2015-11-19
You write in a comment below that "the problem is the script/model will be used later without any variable in the workspace... So A will no longer be there", but this only seems to be relevant when MATLAB is restarted, otherwise there are multiple ways pass variables between workspaces, or to make them persistent, or pass them as arguments...
Can you please explain the exact sequence that makes it impossible to pass the variable using standard means? Perhaps there is some easy way that we can recommend, if you tell us exact how it occurs that the variable A is not accessible.
In particular can you tell us what you mean by "the workspace", as MATLAB has multiple workspaces: the base workspace and for every function. Of course it is also easy to pass arguments between workspaces, so your difficulty is not clear.
回答(4 个)
Stephen23
2015-11-19
编辑:Stephen23
2015-11-19
It seems that you are looking for functionality like this FEX submission uneval:
This submission takes a variable and prints a string that when evaluated reproduces the same variable as the function was given. I do not think that the author has updated it to include tables, however you could write to them and request this, or make the required changes yourself.
0 个评论
Thorsten
2015-11-19
You can use dlmwrite the write A to a file, open the file in an editor and copy and paste the contents to your script and add the A = [ ...]; syntax.
Ilham Hardy
2015-11-19
What do you mean by slow and not using the variable in workspace?
B = A; ?
2 个评论
Ilham Hardy
2015-11-19
Are you talking about script (in Matlab) or model (in Simulink)?
If the mysterious variable will be used in the model (Simulink) then you could use the Model Propertise; Callback
另请参阅
类别
在 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!