How can you program to automatically rename imported data?

8 次查看(过去 30 天)
I am writing a larger program to automate creation of some graphs. I have an importfile function to bring in the data as a variable (it's a matrix). I need to create another identical matrix to this imported data but renaming it "values" so that it can be used later in the overarching program for creating the graphs.
How can I change the function so that it will create a duplicate matrix to the imported file named "values"?
Thank you!!!
Aaron

回答(2 个)

Fangjun Jiang
Fangjun Jiang 2011-8-18
What do you mean? rand() is a function, so
a=rand(10);
values=a;
You don't need to change the function.
See the link on the Mathworks website for generating re-usable code for uiimport(). Pay attention to the part regarding return variable.
  2 个评论
Aaron Burdick
Aaron Burdick 2011-8-18
Basically I say importfile(uXYPPBVCH4) and then Matlab imports the file and creates a Matrix named "uXYPPBVCH4". I need to have this imported matrix duplicated as another matrix named "values" so that I can use the variable "values" in creating a plot.
Does that make sense?
Thanks!
Fangjun Jiang
Fangjun Jiang 2011-8-19
Is the importfile() function generated after using uiimport()? Below is an excerpt from the documentation. If your importfile() doesn't have a return argument, you need to re-run uiimport() with a return argument so the generated importfile() will also have a return argument. Then you can assign any variable name for it.
If you do not import into a structure array, the generated function creates variables in the base workspace. If you plan to call the generated function from within your own function, your function cannot access these variables. To allow your function to access the data, start the Import Wizard by calling uiimport with an output argument. Call the generated function with an output argument to create a structure array in the workspace of your function.

请先登录,再进行评论。


Sean de Wolski
Sean de Wolski 2011-8-18
values = importdata('uXYPPBVCH4.mat');
  5 个评论
Fangjun Jiang
Fangjun Jiang 2011-8-19
http://www.mathworks.com/matlabcentral/answers/11871-importfile-from-a-gui
Fangjun Jiang
Fangjun Jiang 2011-8-19
The Mathworks link is here. Search for importfile on the page.
http://www.mathworks.com/help/techdoc/import_export/br5wz4t.html

请先登录,再进行评论。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by