Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

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 visualizzazione (ultimi 30 giorni)
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?

Risposte (1)

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

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by