Hi,
I have tried the following:
syms p(n,m,b,d,t)
p(n,m,b,d,t)=((n-m)*((1/b)-(1/d)+ ((n-m)*t)/(n*b*d)))
I know the values of everything in this equation (including the total value of the p function) except n,. How do i get matlab to calculate what n is?
Thank you dearly in advance, Karen

 채택된 답변

Jeff Miller
Jeff Miller 2018년 8월 22일

1 개 추천

syms p n m b d t
eqn = p == ((n-m)*((1/b)-(1/d)+ ((n-m)*t)/(n*b*d)));
solve_for_n = solve(eqn,n)
% Specify your known values here
m = 3;
b = 2;
d = 1;
t = 2;
p = 12;
the_n_is = vpa(subs(solve_for_n))

댓글 수: 1

Karen Lahav-Yacouel
Karen Lahav-Yacouel 2018년 8월 22일
That s great. Thank you so much for your help! Def learned from your answer. Thank you!!!

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

추가 답변 (0개)

제품

릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by