Can one substitute string values in a matrix?

1 次查看(过去 30 天)
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