Es gibt zwei Arten von Matlab-Ausgabeanweisungen, nämlich: 1. Freies Format mit einer Syntax wie „disp(23+454-29*4)“; 2. Formatierte Ausgabe mit einer Syntax wie „fprintf('Der Bereich ist %8.5fn ', Fläche)".
MATLAB-Eingabe- und Ausgabeanweisungen
1. Die Eingabefunktion für MATLAB-Eingabeanweisungen wird zum Empfangen von Benutzereingaben verwendet:
a.Eingabedaten
>> x=input('please input a number:') please input a number:22 x = 22
b.Eingabezeichenfolge
>> x=input('please input a string:','s') please input a string:this is a string x = this is a string
2. MATLAB-Ausgabeanweisungen inklusive freiem Format (disp) und formatierter Ausgabe (fprintf)
>> disp(23+454-29*4) 361 >> disp([11 22 33;44 55 66;77 88 99]) 11 22 33 44 55 66 77 88 99 >> disp('this is a string') this is a string >> area=12.56637889; >> fprintf('The area is %8.5f\n',area) The area is 12.56638 >>
Das obige ist der detaillierte Inhalt vonWas ist die Matlab-Ausgabeanweisung?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!