필터 지우기
필터 지우기

How to determine unknown value from an equation

조회 수: 3 (최근 30일)
Vinay Srinivasan
Vinay Srinivasan 2019년 10월 4일
댓글: Vinay Srinivasan 2019년 10월 4일
Power_roadatmaxspeed=((2.73*C_r*m)+(0.0126*C_d*a*S^2))*S
The above written is my equation. I have given values for C_r, m ,C_d , a initially as they are given data of a vehicle .I found the Power_roadatmaxspeed now. So I want to find S. How to determine through matlab ?

채택된 답변

Matt J
Matt J 2019년 10월 4일
편집: Matt J 2019년 10월 4일
It's a cubic polynomial, so you can use roots().
  댓글 수: 2
Walter Roberson
Walter Roberson 2019년 10월 4일
roots([0.0126*C_d*a, 0, 2.73*C_r*m, -Power_roadatmaxspeed ])
Vinay Srinivasan
Vinay Srinivasan 2019년 10월 4일
Thank you so much

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Polynomials에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by