Limiting vectors to a certain number of rows

Hi, i have created a function that creates n lots of a matrix of 3 columns but different number of rows. How do i limit the number of rows of this matrixes to say 4 for each one?

Answers (1)

n = 7;
out = arrayfun(@(x)rand(randi(4),3),1:n,'un',0);

This question is closed.

Asked:

on 12 Dec 2013

Closed:

on 20 Aug 2021

Community Treasure Hunt

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

Start Hunting!