Problem involving fprintf and vectors
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
kaiserlim
am 20 Nov. 2015
Beantwortet: Walter Roberson
am 20 Nov. 2015
Hello, i have a little problem with my function.
Below is my function,
A=input('Input the components of a vector, separated by spaces or commas:\n','s');
vector=str2num(A);
fprintf('you entered %d\n',vector)
MATLAB gives me this results. (Let's take 1,2,3 as the example for vector)
you entered 1
you entered 2
you entered 3
you entered 4
I want the results to appear like this instead
you entered 1 2 3 4
Is there any way in doing that or there is something wrong with my function?
Thanks in advance
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 20 Nov. 2015
fprintf('you entered');
fprintf(' %d',vector);
fprintf('\n');
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Linear Algebra 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!