If-expression only runs the first expression?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I created a for loop for a 5x5 matrix (it is a struct with data in it). But there are some values of the matrix I don't want to calculate. For example, I don't want to calculate cell (1,4). I also don't want to calculate the cell (3,4), (4,4),...
if ~((i_testen == 4) & (welke_pp == 1)) | ((i_testen == 4) & (welke_pp == 3)) | ((i_testen == 4) & (welke_pp == 4)) | ((i_testen == 4) & (welke_pp == 5)) %i_testen stands for the measurementnumber. welke_pp stand for the subjectnumber.
RASI = data_sts(welke_pp,i_testen).VideoSignals(:, strcmp('RASI', data_sts(welke_pp,i_testen).VideoSignals_headers)); %extract data
XY(2,1) = max(RASI) %maximum of RASI
XY(1,1) = 0; %mimimum is set to zero
Begin_Eind_sts.Begin(i_testen) = abs(XY(2,1)); %store data
Begin_Eind_sts.Eind(i_testen) = abs(XY(1,1));
close all %close all opened figures
else
continue %continue with the previous for-loop
end
The problem is that the program runs perfectly, and even when the values for i_testen = 4 and welke_pp = 1, the program goes to 'else' and continues the for loop. But when the next values for the if-expression comes up (being i_testen = 4 and welke_pp = 3), the program doens't jump to 'else'.
2 commentaires
Jan
le 21 Déc 2014
You have a "matrix", which is a "struct" and the elements are "cells"? These are contradictions and inconsquence confusing.
Réponse acceptée
Jan
le 21 Déc 2014
Modifié(e) : Jan
le 21 Déc 2014
Of course your code does not enter the else part, when i_testen = 4 and welke_pp = 3.
if ~((i_testen == 4) & (welke_pp == 1)) | ...
((i_testen == 4) & (welke_pp == 3)) % shortend
The ~ operator matters the first condition only. So for i_testen = 4 and welke_pp = 3, the condition is true. Perhaps you want additional paranetheses?
if ~( ((i_testen == 4) && (welke_pp == 1)) || ...
((i_testen == 4) && (welke_pp == 3)) || ...
((i_testen == 4) && (welke_pp == 4)) || ...
((i_testen == 4) && (welke_pp == 5)) )
I'm used the && and operators, because the expressions are scalars, but the vector operators & and | are correct also.
Or shorter:
if i_testen ~= 4 || any(welke_pp ~= [1,3,4,5])
0 commentaires
Plus de réponses (1)
Star Strider
le 20 Déc 2014
The ‘else’ condition may not be necessary.
See if:
if ~((i_testen == 4) & (welke_pp == 1)) | ((i_testen == 4) & (welke_pp == 3)) | ((i_testen == 4) & (welke_pp == 4)) | ((i_testen == 4) & (welke_pp == 5))
. . . CODE . . .
close all %close all opened figures
end
works. The ‘else’ condition is likely implied.
6 commentaires
Star Strider
le 21 Déc 2014
Modifié(e) : Star Strider
le 21 Déc 2014
I have no idea what you want to do, so I’m not sure what to suggest. The code I wrote is designed to help you troubleshoot your code. You’ll have to experiment with your if logic to get the result you want. That’s the best I can do just now.
I would start with several large sheets of paper, then diagram on them what I want to do in various situations. (In the days when I did this for my FORTRAN programs on the back of 132-column fanfold line-printer paper, it was called a ‘flow chart’.) Write short programs to test your logic so you’re certain it will work as you want it to. Then write your program.
I’ll help as much as I can, but I can only do so much.
Voir également
Catégories
En savoir plus sur Data Type Identification 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!