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!