Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Could anyone help me to solve the issue.

조회 수: 1 (최근 30일)
jaah navi
jaah navi 2019년 4월 18일
마감: MATLAB Answer Bot 2021년 8월 20일
I am having 5 users whose initial_position are generated by the code itself and gives the value as follows:
initial_position=1.7620e+06
initial_position=1.9911e+06
initial_position=1.8969e+06
initial_position=2.5384e+06
initial_position=2.5042e+06
All the 5 values are generated inside for loop in my code by running the loop 5 times.
Once the initial position is generated i need to find one common_position which is the maximum initial_position .
So i used the command ,common_position=max(initial_position) outside the for loop in order to find it
I got the result as common_position=2.5384e+06.
In the next step i need to use the expression of (common_position-initial_position)
so far in my code common_position is one which is calculated outside for loop, but initial_position is five which gets calculated inside for loop
Could anyone help me how can i use the expression of (common_position-initial_position) to generate 5 different values with respect to the difference of two positions.

답변 (1개)

Torsten
Torsten 2019년 4월 18일
편집: Torsten 2019년 4월 18일
If "initial_position" is an array with 5 elements and "common_position" is a scalar, you can simply type
difference = common_position-initial_position
  댓글 수: 2
jaah navi
jaah navi 2019년 4월 18일
"initial_position" is an array with 5 elements generated inside the for loop
"common_position" is also an array with 1 element generated outside the for loop
If i use the command
difference = common_position-initial_position
outside the for loop it generates only one value.
but it need to be done with respect to 5 elements.
Could you please help me on this.
Torsten
Torsten 2019년 4월 18일
편집: Torsten 2019년 4월 18일
No, it will generate 5 values (if "initial_position" really is an array with 5 elements, as you claim).

태그

Community Treasure Hunt

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

Start Hunting!

Translated by