Simulink Dimension Mismatch Error
3 ビュー (過去 30 日間)
古いコメントを表示
I am attempting to run a Simulink File for a 5x5 Matrix to design a Controller. The file works perfectly fine for 4*x matrices, but it struggles to perform anything for 5*x, and it gives me an error regarding a dimension mismatch. I will attach a screenshot of the problem below (the MATLAB Code Surrounding this Question works fine). The problem mainly lies in the 'F*u' Op-Amp, and the Mux '2':
0 件のコメント
回答 (1 件)
Salman Ahmed
2021 年 11 月 18 日
Hi Bahaa,
From my understanding this error has originated as you are trying to multiply the output of the mux which is a signal of dimension [1x2] with F having the dimension [5x1]. As a general rule for matrix multiplication the number of columns of the first matrix must be equal to the rows of the second. So, in this case, you could modify the number of outputs to be 5 for the mux or the number of rows of F to be 2 to satisfy this condition. Hope this resolves your issue.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Simulink Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!