How can I display a variable in a text string inside a message box?

5 Ansichten (letzte 30 Tage)
Hi all,
I'm trying to get my code to output a line of text inside a message box, and have it state the value of a variable that it has calculated. The basic idea I want is:
if abs(freq-BPFI)<1.5
msgbox('Event Frequency=<freq> Inner Race Fault Detected','Fault Detected','warn')
end
Where freq is the value of the variable. Could anybody tell me how I can do this? Thanks in advance.
Zac

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 28 Aug. 2013
msgbox(sprintf('Event Frequency=%g Inner Race Fault Detected', freq), 'Fault Detected', 'warn')

Weitere Antworten (0)

Kategorien

Mehr zu Language Support 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