Filter löschen
Filter löschen

How to add space between vector indices in an output

6 Ansichten (letzte 30 Tage)
Ashlee Rogers
Ashlee Rogers am 26 Sep. 2020
Kommentiert: Ashlee Rogers am 26 Sep. 2020
I am trying to find out how to make my output have spaces in between the indices of the vector...This is what I have so far, which is giving me the correct vector output:
A=input('Enter values in A in vector form:');
for i=1:length(A)
if (A(i)>0)
B(i) = A(i)^3;
else
B(i) = 0;
end
end
fprintf('The output vector is :\t[')
fprintf('%d',B)
fprintf(']\n')

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 26 Sep. 2020
fprintf('%d ',B(1:end-1))
fprintf('%d]\n', B(end))
  3 Kommentare
Walter Roberson
Walter Roberson am 26 Sep. 2020
Bearbeitet: Walter Roberson am 26 Sep. 2020
Notice in the first of the two lines I posted, there is a space between the %d and the following '
apostrophe percent d space apostrophe
Ashlee Rogers
Ashlee Rogers am 26 Sep. 2020
Yes, thank you! I missed that space! 😊 Very grateful to you

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by