use of comma & semi colon
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
mrituanjay kumar
am 5 Mär. 2020
Kommentiert: Guillaume
am 18 Mär. 2020
Please explain the meaning of below command in matlab
A(1, 1:9) = [ 30, 25, 16, 32, 15, 37, 18, 3, 10,]
0 Kommentare
Akzeptierte Antwort
Guillaume
am 5 Mär. 2020
You're asking a very basic question. 5 minutes with any tutorial would have answered it. We recommend that you go through the free matlab onramp to learn the basics of matlab.
4 Kommentare
Guillaume
am 18 Mär. 2020
bar([a; b].'); %vertically concatenate the two vector and transpose so they're in columns
Weitere Antworten (1)
KSSV
am 5 Mär. 2020
That means....in the matrix A in the first row (1) the columns one to 9 are filled with [ 30, 25, 16, 32, 15, 37, 18, 3, 10,].
If you want only single array..can be used:
A = [ 30, 25, 16, 32, 15, 37, 18, 3, 10] ;
Siehe auch
Kategorien
Mehr zu Line Plots 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!