empty double matrix in case of nul value

17 visualizzazioni (ultimi 30 giorni)
abdul rehman
abdul rehman il 10 Lug 2021
Commentato: abdul rehman il 10 Lug 2021
I am receiving the message "4x0 empty double matrix ". when the output is nul. I want it to be 0. when its empty
code line:
malicious=n_selfish_veh(n_selfish_veh(:,3) & n_selfish_veh(:,4) < time_ee ,:)

Risposte (1)

James Tursa
James Tursa il 10 Lug 2021
Do you mean you want to do something like this:
if( isempty(malicious) )
malicious = 0;
end
  1 Commento
abdul rehman
abdul rehman il 10 Lug 2021
can we do it without if condition such as , isnan(malacious)=0 but its not working properly

Accedi per commentare.

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by