How to re-produce an existing variable in the script without using it?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentar
Stephen23
am 19 Nov. 2015
Bearbeitet: Stephen23
am 19 Nov. 2015
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.
Antworten (4)
Stephen23
am 19 Nov. 2015
Bearbeitet: Stephen23
am 19 Nov. 2015
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 Kommentare
Thorsten
am 19 Nov. 2015
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
am 19 Nov. 2015
What do you mean by slow and not using the variable in workspace?
B = A; ?
2 Kommentare
Ilham Hardy
am 19 Nov. 2015
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
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!