コーディングのアイデアに問題があります。どんな助けでも大歓迎です。
マトリックスがあり、傾向を示す必要があります。
Limit1=30;
limit2=40;
F=[0 ; 0; 0; 0; 0; 0 ; 1; -79; -84; 35 ; 75; 0 ;0 ]
[row1,col1,v1] = find(abs(F)>30)
[row2,col2,v2] = find(abs(F)>40)
Limit1 を超えると、Limit2 もチェックする必要があり、その逆も必要です。
任意のアイデアをお願いします
%% OutPut=[ row_of_F,Value_crossing_which_limit(Limit1,Limit2), trend (from lower to upper or vice versa] % values are abs – user31177 1 min ago edit
%% これは出力されるはずです
OutPut_=[ '8' '30' 'GoingDown'
'8' '40' 'GoingDown'
'9' '40' 'GoingDown'
'10' '40' 'Comingup'
'11' '30' 'GoingDown'
'11' '40' 'GoingDown'
'12' '40' 'Comingup'
'12' '30' 'Comingup' ]