Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

i have array cv which contains 16 rows & 2 columns. i need to find index of any one column. for ex, ans=2 or ans=1. i tried the following code. but it doesn't give the correct answer.please send the code.thank u sir.

1 Ansicht (letzte 30 Tage)
[ind]=find(cv(:,z),2)

Antworten (1)

Roger Stafford
Roger Stafford am 26 Mär. 2016
I think what you meant to do is:
ind = find(cv(:,z) == 2); % Gives indices of each element in column z which equals 2
  3 Kommentare
divya taru
divya taru am 27 Mär. 2016
i have another problem in matlab. i had converted image into blocks. I converted blocks to linear array. Next i calculated mean values for first 8 arrays. now i want to convert mean values to linear array again. please send suitable code. please don't ignore it. thank u very much.

Diese Frage ist geschlossen.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by