GUIDE help
1 回表示 (過去 30 日間)
古いコメントを表示
How I can import a variable of my workspace into a line to my guide *.m
function btnSaltaPepper_Callback(hObject, eventdata, handles)
set(handles.truido,'string','Salt & Pepper Noise')
axes(handles.iruido);
J = imnoise(I,'salt & pepper');
imshow(J,'InitialMagnification','fit')
assignin('base','J',J)
I need import I from my workspace for apply the imnoise
Thanks
0 件のコメント
採用された回答
Walter Roberson
2011 年 11 月 10 日
I = evalin('base','I');
Provided, that is, that you put I in the base workspace to begin with. There are a lot of other workspaces you might have put it in.
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!