How can I import data from workspace to GUI?

2 次查看(过去 30 天)
I have written a GUI with GUIDE and now I have to import data from the workspace to my GUI.
Data is a row vector (a signal) but is a field of a struct that contains this signal and others data.
How can I do this operation? Someone can tell me the commands to do this?

采纳的回答

TAB
TAB 2012-7-6
In Base workspace
MyStruct.Data = [1 2 3 4 5];
MyStruct.OtherData = 0;
In GUI's function
MyStructHere = evalin('base','MyStruct');
DataHere = MyStructHere.Data;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by