Effacer les filtres
Effacer les filtres

Unable to perform assignment because the size of the left side is 1-by-144 and the size of the right side is 1-by-114.

2 vues (au cours des 30 derniers jours)
Hi,
I'm getting the error message described above and I'm not sure why, this is the code:
t1_r=zeros(length(idx1i),144);
for i=1:1:length(idx1i)
t1_r(i,:)= t1(idx1i(i): idx1f(i));
end
it seems correct to me since left and right have the same size... Basically the right side is a vector of 1x144 that I'm trying to stock up in a series of rows creating matrix tr_1.
Hopefully you'll be able to help!
Thanks!

Réponse acceptée

Alex Mcaulley
Alex Mcaulley le 21 Fév 2019
Probably the problem is that (idx1i(i): idx1f(i)) it's not of 144 size. You probably need to put the range in t1_r variable, for example:
t1_r=zeros(length(idx1i),144);
for i=1:1:length(idx1i)
t1_r(i,idx1i(i): idx1f(i))= t1(idx1i(i): idx1f(i));
end
  1 commentaire
gorilla3
gorilla3 le 21 Fév 2019
Ahhh it was a typo! I'm sorry, it clearly says 114, and I read it as 144. Problem solved! Thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by