Filter löschen
Filter löschen

how to ease conditions?

1 Ansicht (letzte 30 Tage)
Ani Asoyan
Ani Asoyan am 11 Mai 2020
Kommentiert: Ani Asoyan am 11 Mai 2020
Hi .. In my code I have a result number (called "gov") on which I want to put conditions
also there is a matrix with 25 columns and 5 rows (called "gp") and a parameter "d"
if gov= one of the values of the first 5 colums of gp (doesn't matter which row)
d=d+1
end
how can I write that easily and short, without typing all the rows and colums?

Akzeptierte Antwort

Image Analyst
Image Analyst am 11 Mai 2020
Try ismember()
if ismember(gov, gp(:, 1:5))
d = d + 1;
end

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by