how to write the formula ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
nursuhailah suhaimi
el 25 de Oct. de 2016
Respondida: Muhammad Farhan Aslam
el 12 de Dic. de 2021
please help me to find the solution. thank you
Respuestas (2)
Ganesh Hegade
el 25 de Oct. de 2016
Editada: Ganesh Hegade
el 25 de Oct. de 2016
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.
0 comentarios
Muhammad Farhan Aslam
el 12 de Dic. de 2021
x = (b/ (120+ 120));
x = fix(x);
y = (c / (0.6 + 0.01));
y = fix(y);
z = x * y;
z = fix(z);
0 comentarios
Ver también
Categorías
Más información sobre ASK en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!