Please enable JavaScript.
Coggle requires JavaScript to display documents.
ME 2115 1/27/17 (Types/classes (Section 1.3.1) (Integers (int 8, int 32,…
ME 2115 1/27/17
-
-
CH 2.1, 2.2, 2.3
arrays
1D
Row vector, column vector
-
-
-
Set of values of the same type, arranged systematically in tabular form.
Vector
row vector --> 1 row, multiple columns
[1 2 - 5 6] . 1X 4 space or comma,, in between elements
Column vector -> multiple rows, 1 column
-
A(row, column)
A(1,3) would denote what is in the first row, third column.
-
-
Linspace
x = linspace ( 0, 10 , 5)
So we are going to start at 0, end at 10, and have 5 points
Format 1.4.1
-
- To specify how expressions will be displayed in the command window.*