GUI Question: How can I import a variable/vector/matrix into a GUI I created?
Show older comments
Hi! For example, I am creating my own GUI and I want to Import a variable or a vector from workspace or file system? How do I go about doing this? Thanks very much!
Accepted Answer
More Answers (2)
Matt J
on 30 Sep 2012
1 vote
This might be what you want
Also, you can pass MATLAB variables to the GUI as input arguments when it is initially launched:
mygui(A,B,C,...)
The variables A,B,C,... will be passed to your gui's OpeningFcn, assuming you developed the gui using GUIDE, as varargin inputs.
Image Analyst
on 30 Sep 2012
1 vote
You can import a file from the file system using uigetfile() to get its filename, then use functions such as dlmread, csvread, textscan, importdata, etc. to read in the contents of the file.
Categories
Find more on Workspace Variables and MAT Files in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!