Can one substitute string values in a matrix?

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일

0 개 추천

dum = strings(height(T), 1); % you could also use repmat or repelem to do it in one line
dum(:) = "January";

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

질문:

2020년 12월 7일

댓글:

2020년 12월 7일

Community Treasure Hunt

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

Start Hunting!

Translated by