Calculator with arithmetic sequences as input values
조회 수: 2 (최근 30일)
이전 댓글 표시
Hello,
I'm writing because I can not figure out how to solve the problem.
I have created a calculator to calculate the force at a certain depth, now I'm trying to make make it show different values at different depths.
The values for imput are Minimum depth of a hole, maximum depth and the common difference alongside other constants.
I want it to calculate the force for every value and show values of all the forces.
Example: Minimum depth=1mm ; Maximum depth=5mm; Common difference=1mm.
F=H*a*b; where H is the depth, F is the force and a and b are the constants.
Force (at 1mm)= 100N ; Force (at 2mm) = 200N ; Force (at 3mm) = 300N ...
I have tried it with the for loop, but I had no luck.
I would be very grateful for any help.
댓글 수: 3
Geoff Hayes
2019년 5월 31일
ok...so perhaps the following will help (I'm guessing as to your intentions of the minimum, maximum, and commond difference)
a = 42; % dummy value
b = 2; % dummy value
minDepth = 1;
maxDepth = 5;
commonDiff = 1; % your step size (?)
F = zeros(5,1);
k = 1;
for h = minDepth:commonDiff:maxDepth
F(k) = h*a*b;
k = k + 1;
end
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!