How to generate a matrix of variables with continous values?

1 view (last 30 days)
P = [x(1) x(2) x(3) x(4) x(5) ;
x(6) x(7) x(8) x(9) x(10);
x(11) x(12) x(13) x(14) x(15);
x(16) x(17) x(18) x(19) x(20);
x(21) x(22) x(23) x(24) x(25);]
how to do this for a 100*100 matrix?
P = [ x(1) ............ x(10);
x(11)...............x(20);
...............................
.................................
x(90).......................x(100);]
Note: I dont want to use "sym code"
could please help me on this?

Answers (1)

Akira Agata
Akira Agata on 27 Nov 2019
How about using reshape function?
The following is an example:
x = 1:100;
P = reshape(x,10,10)';

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!