how to write the formula ?

1 次查看(过去 30 天)
nursuhailah suhaimi
nursuhailah suhaimi 2016-10-25
please help me to find the solution. thank you

回答(2 个)

Ganesh Hegade
Ganesh Hegade 2016-10-25
编辑:Ganesh Hegade 2016-10-25
HI,
Please do the following changes and check.
x = (b/ (1.2 + 0.01));
x = fix(x);
y = (c / (0.6 + 0.01));
y = fix(y);
z = x * y;
z = fix(z);
similarly,
o = (b/ (0.6 + 0.01));
o = fix(o);
p = (c / (1.2 + 0.01));
p = fix(p);
q = o * p;
q = fix(q);
For number of modules:
nNumnerOfModule = a * max(z,q);
Please set this to handle of NUMBER OF MODULE
Thanks.

Muhammad Farhan  Aslam
x = (b/ (120+ 120));
x = fix(x);
y = (c / (0.6 + 0.01));
y = fix(y);
z = x * y;
z = fix(z);

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by