empty double matrix in case of nul value
조회 수: 8 (최근 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 ,:)
댓글 수: 0
답변 (1개)
James Tursa
2021년 7월 10일
Do you mean you want to do something like this:
if( isempty(malicious) )
malicious = 0;
end
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!