How can I turn vector to scalar?

조회 수: 152 (최근 30일)
Poohish
Poohish 2019년 11월 8일
댓글: Alan Weiss 2022년 7월 31일
Let say the example below
x=(10,20,30,40,50,60,70)
which mean
x(1)=10;
x(2)=20;
x(3)=30;
...
x(7)=70;
How can i define the variable using loop without mentioning or defining one by one ?
As i have x(1) up to x(1155) so I can sum x(1)+x(2)+...+x(1155)

답변 (1개)

KSSV
KSSV 2019년 11월 8일
x = 10:10:70 ; % this will generate [10,20,..70] ;
sumx = sum(x) ; % this will give you sum of array
Also you can call each number from array by indexing.
for i = 1:length(x)
xi = x(i)
end
  댓글 수: 7
Gwen Murray
Gwen Murray 2022년 7월 30일
I could really use the answer to this question if anyone found out how to do this. I am having the same exact problem in my code currently
Alan Weiss
Alan Weiss 2022년 7월 31일
I suggest that you start a new question with details. I cannot understand why the previous answers suggesting to use sum are not adequate, so more detail is essential to get a helpful answer.
Alan Weiss
MATLAB mathematical toolbox documentation

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Solver Outputs and Iterative Display에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by