Borrar filtros
Borrar filtros

GUI How i can call a function transfer to show in a static text...

2 visualizaciones (últimos 30 días)
I dont know how call a transfer funtcion to show i a static text
% Discretizar por ZOH
Gz = c2d(Gs,T,'zoh')
set(handles.GZDisc,'',)
assignin('base','Gz',Gz)

Respuesta aceptada

Sergio
Sergio el 9 de Mzo. de 2012
I got it
Gz = c2d(Gs,T,'zoh');
G = evalc('Gz');
set(handles.FTDisc,'String',G);

Más respuestas (1)

Walter Roberson
Walter Roberson el 8 de Mzo. de 2012
set(handles.GZDisc, 'String', num2str(Gz))
  4 comentarios
Walter Roberson
Walter Roberson el 9 de Mzo. de 2012
Then I do not understand what you want to do. Are you wanting to display the symbolic form of the transfer function perhaps?
Sergio
Sergio el 9 de Mzo. de 2012
Gz = c2d(Gs,T,'zoh');
G = evalc('Gz');
set(handles.FTDisc,'String',G);

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by