How to display rise time in edit box MATLAB Gui?

4 Ansichten (letzte 30 Tage)
Unkown
Unkown am 3 Aug. 2021
Kommentiert: Unkown am 3 Aug. 2021
How can i display the rise time and settling time that is obtained from the graph into the edit box GUI?
  2 Kommentare
Rik
Rik am 3 Aug. 2021
Just as with anything else you do in your GUI: write a function that calculates what you need, then use the handles to the objects to set the String property.
Unkown
Unkown am 3 Aug. 2021
Yes. I have done some of the following codes but it does display.
%Rise Time
h = Stepinfo(syspi);
set(handles.setime,'String', num2str(h));

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Rik
Rik am 3 Aug. 2021
The function you're using doesn't return a single numeric value, but a struct, as the documentation clearly explains. You need to convert the results to a char array.
%Rise Time
h = Stepinfo(syspi);
str=num2str(h.RiseTime);
set(handles.setime,'String', str);
By using that intermediary step you can more clearly see what is happening.
%alternatively:
str=sprintf('Rise time: %.1f, Settling time: %.1f',h.RiseTime,h.SettlingTime)

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by