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?

 Accepted Answer

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

More Answers (0)

Categories

Tags

Community Treasure Hunt

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

Start Hunting!