Assignment has more non-singleton rhs dimensions than non-singleton subscripts
조회 수: 1 (최근 30일)
이전 댓글 표시
hi I keep getting the error which i mentioned in the question.This is a part of the code in which there is an error, if someone could help me out that would be great. G is a constant defined as 1.2, p_0 is a constant defined as 125000, c is a counter which goes from 1 to 10, n is your max count which is 10.rho is another constant defined as 1.023 and p_0 is defined as 1.225.
pressure = zeros(n,1);
pressure(c,:) = p_0;
p = (rho/rho_0).^G .*p_0;
pressure(c,:) = p;
end
댓글 수: 1
Walter Roberson
2017년 6월 23일
You do not tell us anything about rho_0 .
When the problem occurs, what does size(p) show ?
답변 (1개)
KSSV
2017년 6월 23일
G = 1.2 ;
p_0 = 125000 ;c = 1:10 ;
n = 10 ;
rho = 1.023 ;
rho_0 = 1.225 ;
p = (rho/rho_0).^G .*p_0;
pressure(c,:) = p;
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!