필터 지우기
필터 지우기

Simulating empirical formulae with negative powers and 5 different variables

조회 수: 1 (최근 30일)
Hello I want to simulate the below formulae in matlab with different vaalues of λ,T,S and P is it possible
Please let me know if it is possible to code and genrate differernt values of n with different values of λ,T,S and P open for any kind of suggetions or links that can be helpful
n=f( λ,T,S, P)
Thank You

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 11월 30일
Yes, you can write this in MATLAB. You will need to change λ to valid variable name
% random values
Lambda = 1;
T = 2;
S = 0.2;
P = 3;
n = 1.3247+3.3*10^3*Lambda^(-2)-3.2*10^7*Lambda^(-4)-2.5*10^(-6)*T^2+(5-2*10^(-2)*T)*(4* 10^(-5)*S)+(1.45* 10^(-5)*P)*(1.021-6* 10^(-4)*S)*(1-4.5* 10^(-3)*T)
  댓글 수: 1
Subhash Chandra Ranga
Subhash Chandra Ranga 2020년 11월 30일
편집: Subhash Chandra Ranga 2020년 11월 30일
Thank you so much for the reply I forgot to mention that the values I want to give them dyanamically and if I store the equation in variables of Lambda since it is not a perfect equation can I plot it ? Like some 3D view or something like that ?

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by