Generating a huge vector.

I'm trying to make a huge vector of 1x115200000. 1 to 76800 will be the number 1, 76800 to 153600 will be the number 2, till it reached number 1500.

Réponses (1)

the cyclist
the cyclist le 10 Juin 2020
Modifié(e) : the cyclist le 10 Juin 2020

0 votes

M = 1500;
N = 76800;
x = reshape(repmat(1:M,N,1),1,M*N);

Catégories

En savoir plus sur Aerospace Blockset dans Centre d'aide et File Exchange

Tags

Question posée :

le 10 Juin 2020

Modifié(e) :

le 10 Juin 2020

Community Treasure Hunt

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

Start Hunting!

Translated by