how can i put NaN
조회 수: 1 (최근 30일)
이전 댓글 표시
How can i put NaN in row 4

댓글 수: 1
답변 (2개)
Yusuf Suer Erdem
2021년 12월 31일
Try these codes below which I did for you, I hope could have given you an idea about it. Good luck!
A = randi([1 100],3,30019,'double');
newRow = NaN(1,30019);
newMatrix=[A; newRow];
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!