Unable to perform assignment because the indices on the left side are not compatible with the size of the right side.

1 Ansicht (letzte 30 Tage)
Hi, Im trying to get matlab to read my excel file but it keeps coming up with the above error message. Not sure how to recitfy it, please help!

Antworten (1)

Yongjian Feng
Yongjian Feng am 28 Jul. 2021
Try to initialize Y first?
Y = zeros(size_determined_by_your_Data, 6);
  2 Kommentare
Yongjian Feng
Yongjian Feng am 29 Jul. 2021
Bearbeitet: Yongjian Feng am 29 Jul. 2021
Note that log(Data(:,6)) has the same size of Data(:, 6). But diff(log(Data(:, 6))) has one less. If your Data(:, 6) has size of n, then diff(log(Data(:, 6))) has size of n-1. Most likely the error is caused by this difference.
In other words, your Y shall be initialized with this in mind.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by