how to print variables in command window with message
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Triveni
am 13 Dez. 2015
Beantwortet: Walter Roberson
am 13 Dez. 2015
A=[1, 3,4]
I want to print size of A is length(A) and A is print(A , length(A))
Akzeptierte Antwort
Walter Roberson
am 13 Dez. 2015
I had to make some guesses about exactly what you want output.
varname = 'A';
varlength = length(A);
fprintf('size of %s is %d\n', varname, varlength);
fprintf('%s is', varname);
fprintf(' %g', [A(:); varlength]);
fprintf('\n');
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!