datatransfer between 2 GUIs
1 次查看(过去 30 天)
显示 更早的评论
Hello Community,
I try to write a programm with 2 GUIs. (with GUIDE) in the first one, datasets will be selected and loaded. in the second one the selected dataset should be plotted, but just an interval aroud the selected idx.
the datasets are very big, and thats the problem.
If i'll pass the dataset as argument to the second GUI and save it to it's workspace, I'll get out of memory.
is there another option, without declarating the dataset as global? i know alignin and evalin, but i'll get bloody fingers with this solution.
0 个评论
采纳的回答
Arthur
2012-4-19
Use setappdata and getappdata. This is an easy way to share data between GUIs, without copying the data.
Watch this excellent video from Doug Hull, wich explains it all:
3 个评论
Walter Roberson
2012-4-20
Not unless you alter the contents.
abc = rand(1000,2000);
handles.abc = abc; %content of abc is NOT duplicated
abc(1,1) = 0; %but now it is duplicated
abc(3,7) = 0; %no further duplication
更多回答(1 个)
Sean de Wolski
2012-4-19
The dataset class is a value class so unfortunately you can't just pass its handle around.
For data xfer, see the FAQ:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Use COM Objects in MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!