Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How can I make the dimensions to agree

1 回表示 (過去 30 日間)
juan Ortiz
juan Ortiz 2018 年 3 月 1 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
IR = find(abs(TTB1(:,1)-CR)<0.1, 1, 'first');%interpulated row -> (IR) for proof
IC = find(abs(TTB1(1,:)-TR)<0.1, 1, 'first')
dfdC = diff(TTB1(IR,:))
dfdT = diff(TTB1(:,IC));
f = intersect(dfdC,dfdT)
C3 = (f+((C2(i)-CR)*dfdC)+((tempexp-TR)*dfdT));
  1 件のコメント
Rik
Rik 2018 年 3 月 1 日
The two parts you are trying to add up are not the same size, which makes sense because they are derived from a column vector and a row vector. Without knowing what your goal is and plausible data to test your code there is little we can do for you.
Also f might not have the size you expect, should there be some implicit expansion to fix that?

回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by