empty double matrix in case of nul value

28 次查看(过去 30 天)
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 ,:)

回答(1 个)

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

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by