How can I solve an equation with 4 vectors of unequal length?

1 次查看(过去 30 天)
How do I use an equation to show the possible soloutions if I have four variables as arrays of different lengths?
Can I use increments that don't fit nicely into the end value - eg: if I start at 1 and want to get to 8 can I increment in 3's?
%constants
g = 9.80665;
%variables in the design
mb = 1:0.5:20; % From 1 to 20 in increments of 0.5
r = 0.01:0.01:0.15; % From 0.01 to 0.15 in increments of 0.01
omega = 1800:1000:20000; % From 1,800 to 20,000 in increments of 1,000
omegarad = omega*2*pi/60; % to change rpm to radians
h = 0.01:0.1:1; % From 0.01 to 1 in increments of 0.1
mw = 2*mb.*g*h./((r.*omegarad).^2);

采纳的回答

David Hill
David Hill 2021-10-9
编辑:David Hill 2021-10-9
Use ndgrid()
g = 9.80665;
mb = 1:0.5:20;
r = 0.01:0.01:0.15;
omega = 1800:1000:20000;
omegarad = omega*2*pi/60;
h = 0.01:0.1:1;
[mb,r,omegarad,h]=ndgrid(mb,r,omegarad,h);
mw = 2*g*mb.*h./((r.*omegarad).^2);%this provides all combinations of the four variables
What are you trying to solve? Do you want mw==something?
  1 个评论
pocklepeter
pocklepeter 2021-10-9
This worked, thank you.
I guess I am looking at my problem wrong as I would like to see what combination of variables produce which results of mw.
I'm trying to design something which will produce a certain force, so I'd like to see what combination of characteristics are the most acheivable.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by