Filter löschen
Filter löschen

Sir I found error when I am using these codes. Codes are shown in the figure......

2 Ansichten (letzte 30 Tage)
In this the problem is occuring is matrix dimension is not satisfied.....So how I do properly???
  1 Kommentar
Stephan
Stephan am 2 Okt. 2018
Your chances for getting an answer will rise if you attach code and data instead of screenshots.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Guillaume
Guillaume am 2 Okt. 2018
All these squigly lines and orange marks in your screenshot is matlab telling you that there may be problems with your code. You should follow the advice that the editor give you and endeavour to have no warning.
With regards to your error, all we can say is that x is not a vector with 2 column, so when it's transposed it's not a vector with 2 rows and thus does not have the same number of rows as aS(:, j). Since only you know what x is, we can't tell you how to fix it, particularly since the only thing you've provided is pictures of the code, not the actual code itself. I would recommend you learn how to debug your code. Step through the code and check that it actually does what you meant it to do by looking at the state of the variables.
Note that if it's not your code and that it was written on matlab R2016b or later, it's possible that the offending line use implicit expansion, in which case
bs(j) = sum(bsxfun(@minus, x', as(:, j)) .^ 6);
may fix the error. If that is the case, you will most likely encounter the same problem in many more places.
  2 Kommentare
Guillaume
Guillaume am 3 Okt. 2018
Again, screenshots are useless us. We can't copy code from screenshots.
It doesn't look like you're in the debugger. Follow the instructions in this page to learn how to debug your code.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by