필터 지우기
필터 지우기

How do I add multiple values stored in a matrix?

조회 수: 3 (최근 30일)
matlabkid602
matlabkid602 2017년 6월 23일
댓글: matlabkid602 2017년 7월 10일
Hello all.
I have a grid of data points that range from 1:30 on the x axis in steps of 1, and .25:30 on the y axis in steps of .25, 3600 entries in total.
I need to find a way to store vectors from 5 selected points on the grid to the origin, and then from the origin to all 3600 points on the grid and store them.
How would I do this with a for loop?
Some guidance please?
  댓글 수: 1
dpb
dpb 2017년 6월 23일
What do mean, precisely, by "store a vector" ?
The coordinates of a vector to any point from the origin are just the values at that point and [0 0]

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

채택된 답변

Vinoth Venkatesan
Vinoth Venkatesan 2017년 7월 6일
I'm assuming the idea is to store the distance between the points (specific selected points/all of them) and the origin. This can be done as follows using 'for' loops in MATLAB: for loops in MATLAB
distances = zeros(120,30);
for i = 1:30
x = i;
for j = 1:120
y = 0.25*j;
distances(j,i) = norm([x,y]);
end
end
Please refer to the norm function at the MathWorks documentation page.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by