필터 지우기
필터 지우기

How to increase matrix size by inserting nan

조회 수: 12 (최근 30일)
LISSA DUVVU
LISSA DUVVU 2020년 2월 10일
댓글: LISSA DUVVU 2020년 2월 10일
I have a matrix of size 1x24, now i want to add nan's to that matrix in a order like from 1 to 59 i want nan and 60 is my first variable again from 60 to 119 nan and 120 is my second value, so that my final matrix size will be 1x1440
any help
thanks

채택된 답변

KSSV
KSSV 2020년 2월 10일
Let A be your 1*24 array.
iwant = NaN(60,24) ;
iwant(1,:) = A ;
iwant = iwant(:) ;
  댓글 수: 2
Bhaskar R
Bhaskar R 2020년 2월 10일
>> find(~isnan(iwant))
ans =
1
61
121
181
241
301
361
421
481
541
601
661
721
781
841
901
961
1021
1081
1141
1201
1261
1321
1381
KSSV
KSSV 2020년 2월 10일
What OP wants can be obtained by
iwant(end,:) = A ;
We have given a example code...he should be able to get it done to his required.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Numbers and Precision에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by