I need to know how to use the for command to calculate y=2/x
조회 수: 2 (최근 30일)
이전 댓글 표시
I am just now learning how to use for loops but I am unsure how to use it to solve an equation with two unknowns. I need to know how to use the for command to calculate y/2/x.
댓글 수: 0
답변 (2개)
Walter Roberson
2022년 12월 4일
You should learn this pattern:
xvals = 1:0.5:10;
num_x = length(xvals);
y = zeros(num_x, 1);
for xindex = 1 : num_x
x = xvals(xindex);
y(xindex) = 2./x;
end
plot(xvals, y)
댓글 수: 1
Walter Roberson
2022년 12월 4일
If you use this pattern where you loop over indices rather than over content then the content does not need to be in any particular order, and can contain duplicates. For example,
xvals = rand(1,20) * 2 - 1;
num_x = length(xvals);
y = zeros(num_x, 1);
for xindex = 1 : num_x
x = xvals(xindex);
y(xindex) = 2./x;
end
plot(xvals, y, '*')
참고 항목
카테고리
Help Center 및 File Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!