how to read my variables ?

1 次查看(过去 30 天)
isabong
isabong 2011-7-8
Hello,
I am using uiimport to load all inside of my file ascii. My file has 2 types of information separatelly, one textdata and the another numeric data. It is loaded in my workspace.Now how could i to work from .m once time loaded in my workspace? How my .m can recognize the variables in my workspace? How can i call these variables in my .m? Perhaps the answer is easy but i am beginner, really sorry in advance. I hope you can help me. thanks
  1 个评论
isabong
isabong 2011-7-8
.m .............................workspace window
................................value
_________________________ .......____________________
uiimport ('filename.dxf') .......DATA 384X512
I=DATA ..........................textDATA 47x1 cell
% if i call DATA here
then -> Undefined function or variable I=DATA
Of course because the .m execute and it is not found anything because need first finish the process import wizard.
Perhaps here, i am more clear. :)

请先登录,再进行评论。

采纳的回答

isabong
isabong 2011-7-20
The anwers is really easy:
rename uimport ......> importvalues=uiimport('filename.dxf');
then depending what do you need you stablish your variables, like that,
if you file is called data, then you write
data=importvalues.data(:,:) and you will get only your file data
if you need more information (data from your ascii file, you can repeat the process.

更多回答(1 个)

Laura Proctor
Laura Proctor 2011-7-8
Start with this Getting Started with MATLAB video.
Your variable names will be listed in the Workspace window, and you will use those names to get the data.
Hope this helps!
  1 个评论
isabong
isabong 2011-7-8
thakns Laura but first is neccesary that import wizard finishes the process, load and then I can call my variables. And i dont know how to stablish that :S the other way my .m will not recognize my variables.-

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by