Effacer les filtres
Effacer les filtres

Error ' Assignment has more non-singleton rhs dimensions than non-singleton..'

1 vue (au cours des 30 derniers jours)
Ede gerlderlands
Ede gerlderlands le 13 Juin 2013
I want to find the location of maximum 'EC' in the first direction. Here is the code I used to find so.
for ii=1:size(EC,2);
ss(1,ii,:)=max(EC(:,ii,:),[],1);
loc(1,ii,:) = find(EC(:,ii,:) == ss(1,ii,:));
end
but an error ' Assignment has more non-singleton rhs dimensions than non-singleton subscripts' keeps coming. Can anyone tell me what to do with it?
  5 commentaires
Walter Roberson
Walter Roberson le 13 Juin 2013
If you are trying to find the maximum of each column along with the associated indices, use the two-output version of max()
[ss(1,ii,:), loc(1,ii,:)] = max(EC(:,ii,:),[],1);
However you need to decide which index you want returned if there are multiple copies of the maximum in any given column.
Ede gerlderlands
Ede gerlderlands le 13 Juin 2013
Thank you very much...

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements 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