Problems with matrix dividing

조회 수: 2 (최근 30일)
Lisa
Lisa 2012년 11월 26일
I want to create a matrix (arrow) and use an arrow and several constants. The error code tells me that matrix dimensions must agree (which I know). How do I get by the problem without making my constants into arrows?
This is my code:
T=[23.1 22.5]; TK=T+273.15;
% Antoine's eqn: logP=A-B/(T+C) Aa=7.24208; Ba=1210.595; Ca=229.664; Aw=8.19625; Bw=1730.630; Cw=233.426;
Pa=10^(Aa-Ba/(T+Ca)) Pw=10^(Aw-Bw/(T+Cw))
  댓글 수: 1
Jan
Jan 2012년 11월 26일
If you mention an "error code", it is most likely very helpful, if you post the complete error message also. Then we do not have to guess the problem, but we can concentrate on the solution. Thanks.

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

답변 (2개)

Daniel Shub
Daniel Shub 2012년 11월 26일
I have no idea what you are trying to do ...
Do you want to do element wise operations? There is a difference between ^ and .^ and / and ./
Pa=10.^(Aa-Ba./(T+Ca))
Pw=10.^(Aw-Bw./(T+Cw))

Image Analyst
Image Analyst 2012년 11월 26일
You have T as two numbers:
T=[23.1 22.5];
Try the equation with T being just one number at a time. Or else make all the other numbers 1 by 2 arrays as well, and use ./ instead of /.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by