Info

此问题已关闭。 请重新打开它进行编辑或回答。

I have a data set with <1x4418 double>, and i want to convert the same data set <94x47 single or double>, how can i do this?

1 次查看(过去 30 天)
I have a data set with <1x4418 double>, and i want to convert the same data set <94x47 single or double>, how can i do this?

回答(1 个)

Star Strider
Star Strider 2019-8-28
Use the reshape function:
v = rand(1, 4418);
vr = reshape(v, 94, []);

此问题已关闭。

Community Treasure Hunt

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

Start Hunting!

Translated by