Effacer les filtres
Effacer les filtres

GUIDE help

2 vues (au cours des 30 derniers jours)
Sergio
Sergio le 10 Nov 2011
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

Réponse acceptée

Walter Roberson
Walter Roberson le 10 Nov 2011
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.

Plus de réponses (1)

Sergio
Sergio le 10 Nov 2011
I got it. Thanks.
If someone needs the Answer is I=evelin('base','I')

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by