필터 지우기
필터 지우기

How can I solve this two shaded equations for d1 and d2?

조회 수: 2 (최근 30일)
Javier Negron
Javier Negron 2020년 11월 24일
댓글: Javier Negron 2020년 12월 7일
This is the student version and I am a begginer user
  댓글 수: 2
John D'Errico
John D'Errico 2020년 11월 24일
Is c known? As far as I can see, c has never been defined. Personally, I think c is 42, which we have been told by another welll known source to be the answer to all of the important questions. In fact, I have heard in the next version of MATLAB, they have plans to replace all undefined variables with the number 42. Hey. It might be the correct number after all.
But don't tell anyone I said this, as I might be leaking valuable product information to the world. It is a secret!
Javier Negron
Javier Negron 2020년 11월 24일
yes, c is known; 0.15 to be exact.

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

채택된 답변

Stephan
Stephan 2020년 11월 25일
syms d1 d2 Grin
eq = [d2 == Grin * d1; (d1+d2) / 2 == 0.15];
sol = solve(eq,[d1,d2]);
sol_d1 = sol.d1
sol_d2 = sol.d2

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by