How can you program to automatically rename imported data?
古いコメントを表示
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
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
2011 年 8 月 18 日
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
2011 年 8 月 18 日
values = importdata('uXYPPBVCH4.mat');
5 件のコメント
Aaron Burdick
2011 年 8 月 18 日
Sean de Wolski
2011 年 8 月 18 日
what happens when you type
which importdata
?
I wonder if you have a different function shadowing importdata
doc importdata
clearly shows outputs expected
Fangjun Jiang
2011 年 8 月 19 日
@Sean, Aaron is using importfile(), not importdata(). I remember answer one question before. importfile() is likely an auto-generated function after using the import data wizard.
Fangjun Jiang
2011 年 8 月 19 日
http://www.mathworks.com/matlabcentral/answers/11871-importfile-from-a-gui
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
カテゴリ
ヘルプ センター および File Exchange で Text Files についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!