Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

can someone help me fix this for loop ?

1 visualización (últimos 30 días)
ME
ME el 17 de Mzo. de 2015
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I have three more arrays w, u and v they all have some elements from the array but w, u and v are all unique so do not have matching rows.
I want to be able to set the condition in this loop so that
[rows, columns] = size(pair); for row = 1 : rows thisRow = pair(row, :);
*if (thisRow == rowFromV) do something ..
else if (thisRow == rowFromW) do something...
else if (thisRow == rowFromU) do something
end end end*
I need for it to be able to scan this row against rows from u w and v ... please somebody help

Respuestas (1)

Image Analyst
Image Analyst el 17 de Mzo. de 2015
Like I said in your duplicate question, use the all() function:
Try
if all(thisRow == rowFromV)

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by