Can one substitute string values in a matrix?

조회 수: 1 (최근 30일)
alpedhuez
alpedhuez 2020년 12월 7일
댓글: alpedhuez 2020년 12월 7일
I create
dum=zeros(height(T),1)
I want Matlab to fill all the values of dum with a string 'January'. How is it possible?

채택된 답변

madhan ravi
madhan ravi 2020년 12월 7일
dum = strings(height(T), 1); % you could also use repmat or repelem to do it in one line
dum(:) = "January";

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by