Transposing Matrices
Transposition is the operation of swapping the rows and columns of a matrix. In R, this is done with the t() function.
Example
123456# Initial matrix m <- matrix(1:6, nrow = 2) m # Transposed matrix t(m)
The original matrix has 2 rows and 3 columns. After transposition, it becomes 3 rows and 2 columns.
Uppgift
Swipe to start coding
You have a vector num. Your goal is to:
- Build a matrix from
numand assign it to themvariable. - Output the transposed
mmatrix.
Lösning
Var allt tydligt?
Tack för dina kommentarer!
Avsnitt 1. Kapitel 29
single
Fråga AI
Fråga AI
Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal
Fantastiskt!
Completion betyg förbättrat till 2.27
Transposing Matrices
Svep för att visa menyn
Transposition is the operation of swapping the rows and columns of a matrix. In R, this is done with the t() function.
Example
123456# Initial matrix m <- matrix(1:6, nrow = 2) m # Transposed matrix t(m)
The original matrix has 2 rows and 3 columns. After transposition, it becomes 3 rows and 2 columns.
Uppgift
Swipe to start coding
You have a vector num. Your goal is to:
- Build a matrix from
numand assign it to themvariable. - Output the transposed
mmatrix.
Lösning
Var allt tydligt?
Tack för dina kommentarer!
Avsnitt 1. Kapitel 29
single