How can I rectify the parse error at '=' in line 7?

조회 수: 1 (최근 30일)
KAKARLA SATYA VEERA VENKATA SIVA RAMAKRISHNA
댓글: Walter Roberson 2020년 3월 5일
function ethylene
T = 306; % Temperature in K
P = 13.5; % Pressure in bar
R = 0.0831; % Gas constant in L*bar*K^-1
B = -140000; % B in L*(mol)^-1
C = 7200000; % C in L^2*(mol)^-2
1+(B/V)+(C/V^2) = P*V/R/T; % Volume in L
fprintf('The volume of ethylene is %d L\n',V)
end
  댓글 수: 1
KSSV
KSSV 2020년 3월 5일
What is this line?
1+(B/V)+(C/V^2) = P*V/R/T; % Volume in L

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

답변 (1개)

Jonas Allgeier
Jonas Allgeier 2020년 3월 5일
편집: Jonas Allgeier 2020년 3월 5일
In line eight, you want to print the value of V. The problem is, you never assign it any value. Variable assigment in essence always requires a line like
V = ...
In your code however, you seem to provide an equation that could be solved for V. This is no direct assignment and Matlab therefore does not know what to do with this line.
To rectify this error, you would need to have an equation that already is solved for V. Otherwise you could also use some kind of optimization technique to find the solution of this equation by iteratively testing different values until the equation is (nearly) met.
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 3월 5일
fsolve() an expression which is the left side minus the right side

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by