Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

how to find the index for the following code

1 Ansicht (letzte 30 Tage)
jaah navi
jaah navi am 19 Feb. 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
If A=1:10,%A= 1 2 3 4 5 6 7 8 9 10
But I want to display the index of A using for loop.
Could anyone help me to solve the issue.
  3 Kommentare
jaah navi
jaah navi am 19 Feb. 2019
when A=1:10 it displays the number from 1 to 10.
I want to have the expected output in the following manner.
when A=1,I want to display one number with respect to first element.
when A=2,i want to display one number with respect to second element.
...
when A=10,i want to display one number with respect to last element.
could you please help me on this.
Rik
Rik am 19 Feb. 2019
Can't you just use A as an index?
someData=[5 8 7 4 6 9 3 10 7 2];
A=5;
disp(someData(5))%shows the 5th element (6 in this case)
%or in a loop:
for A=1:10
disp(someData(A))
end

Antworten (1)

madhan ravi
madhan ravi am 20 Feb. 2019
Bearbeitet: madhan ravi am 20 Feb. 2019
“But I want to display the index of A using for loop”
You don’t need one , see the documentation of fprintf().
Values=rand(1,10); % example data
A=1:numel(Values); %indices
fprintf('When A = %d the value is %d\n',[A;Values])

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by