How to select and write values from data into excel

I have a single column of 98820 values i want to divide them into groups of 4941 and write them in separate columns in excel

 Accepted Answer

x = rand(98820, 1);
y = reshape(x, 4941, 20);
xlswrite(FileName, y);

3 Comments

what if 98829/4941 is not integer? then this doesn't work.
Correct (though this more general question wasn't asked). If the vector is not an integer multiple of the number in a group, then Arslan should choose a different group size or else re-think what he wants to do. For the stated numbers, this works.
98820/4941 is an integer its 20 (its not 98829)

Sign in to comment.

More Answers (0)

Categories

Asked:

on 23 Feb 2017

Commented:

on 26 Feb 2017

Community Treasure Hunt

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

Start Hunting!