How to overcome this problem; Error using - Matrix dimensions must agree.
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
Hello guys! please i need your input. i wanted to calculate an error using this equation 
En =sqrt(((psi-p)^2)/psi^2); with psi having 108x108 double and p having  101x136 double dimensions. the error using - matrix dimesions must agree keep pupping. 
i knew the two are of different dimensions, but i think if i use interpolation it will increase the error too. please is there any alternative method to make such calculation?
댓글 수: 0
채택된 답변
  KSSV
      
      
 2019년 8월 5일
        Two options: 
Reduce dimensions 
psi = psi(1:101,1:108) ; 
p = p(1:101,1:108) ; 
En =sqrt(((psi-p)^2)/psi^2);
Do interpolation
댓글 수: 3
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!