Create array Arr with 5 rows and 4 columns with each element = 5
19 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
vArr = [ 5 6 7 8; 2 3 4 5 ; 2 3 4 5; 2 3 4 5; 2 3 4 5 ]
but what does it mean with each element = 5 all number has to be 5???
0 Kommentare
Antworten (2)
James Tursa
am 26 Sep. 2019
Bearbeitet: James Tursa
am 26 Sep. 2019
Yes. Replace all of your numbers with 5 and you will have it. E.g.,
Arr = [5 5 5 5; etc.
This is the hardest way to accomplish the result, but it does work.
0 Kommentare
raghav
am 24 Feb. 2024
CODE TO CREATE ARRAY OF ALL ELEMENTS OF 5 WITH 5 ROWS AND 4 COLUMNS
Arr=5*ones(5,4)
Siehe auch
Kategorien
Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!