Error message saying "Matrix dimensions must agree"

Hi
Keep getting error message saying "Matrix dimensions must agree".
not too sure why this is.
any help would be greatly appriciated

2 件のコメント

Mathieu NOE
Mathieu NOE 2020 年 11 月 27 日
hi
would be easier if y could share also the data file conductance data.csv

サインインしてコメントする。

回答 (1 件)

KSSV
KSSV 2020 年 11 月 27 日

0 投票

"Matrix dimensions must agree".
not too sure why this is.
The error is pretty simple. You will get this error, when you try to add, multiple two matrices which do not obey the rule of addition and mulitplication.
A = rand(3) ; B = rand(2);
A+B % error
A*B % error
In your case too the same thing is happenin. Try to learn how to run the code in debug mode. Run in debug mode, check the dimensions of each and every array and see why the dimensions are no compatible.

1 件のコメント

reuben alexander
reuben alexander 2020 年 11 月 27 日
hi
sorry i am new to all this.
what is debug mode ?

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

質問済み:

2020 年 11 月 26 日

コメント済み:

2020 年 11 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by