how to write the formula ?
조회 수: 1 (최근 30일)
이전 댓글 표시
please help me to find the solution. thank you
답변 (2개)
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.
댓글 수: 0
Muhammad Farhan Aslam
2021년 12월 12일
x = (b/ (120+ 120));
x = fix(x);
y = (c / (0.6 + 0.01));
y = fix(y);
z = x * y;
z = fix(z);
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 ASK에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!