Clear Filters
Clear Filters

i have A=150x1 matrix, i want to create another matrix of size B=15x10 where the 1st column contains 1st 15 data of matrix A and the 2nd column can contain the next 15 data and so one. So please help

1 view (last 30 days)
for i=1:10 for j=1:15 p=cat(2,u((i*(j)))); end end

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 2 Jun 2016
reshape(A,15,[])

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!