please give me mat-lab code for these following expression
조회 수: 1 (최근 30일)
이전 댓글 표시
this expression is useful for determining brake force relation with the performance parameter.
댓글 수: 3
채택된 답변
Paridhi Yadav
2018년 6월 4일
편집: Paridhi Yadav
2018년 6월 4일
f_u2 = 0.5*(G/hg*(sqrt(b + (4*hg*l*f_ul/G)) - (G*b/hg + 2*f_ul)))
추가 답변 (1개)
Ankita Bansal
2018년 6월 4일
Hi Amit, you can use sym function available in matlab and write the equation.
syms Fmu2 G hg b L Fmu1
Fmu2=1/2*((G/hg)*sqrt(b+(4*hg*L*Fmu1/G))-((G*b/hg)+2*Fmu1))
참고 항목
카테고리
Help Center 및 File Exchange에서 Gain Scheduling에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!