About 69 results
Open links in new tab
  1. transpose - Transpose vector or matrix - MATLAB - MathWorks

    This MATLAB function returns the nonconjugate transpose of A, that is, interchanges the row and column index for each element.

  2. transpose - Symbolic matrix transpose - MATLAB - MathWorks

    This MATLAB function computes the nonconjugate transpose of A.

  3. Reshaping and Rearranging Arrays - MATLAB & Simulink - MathWorks

    Apr 7, 2010 · A common task in linear algebra is to work with the transpose of a matrix, which turns the rows into columns and the columns into rows. To do this, use the transpose function or the .' operator.

  4. Basic Matrix Operations - MATLAB & Simulink Example

    This example shows basic techniques and functions for working with matrices in the MATLAB® language.

  5. Matrices in the MATLAB Environment - MATLAB & Simulink - MathWorks

    MATLAB uses the apostrophe operator (') to perform a complex conjugate transpose, and the dot-apostrophe operator (.') to transpose without conjugation. For matrices containing all real elements, …

  6. ctranspose - Complex conjugate transpose - MATLAB

    The complex conjugate transpose of a matrix interchanges the row and column index for each element, reflecting the elements across the main diagonal. The operation also negates the imaginary part of …

  7. 3-D matrix transpose - MATLAB Answers - MATLAB Central - MathWorks

    Oct 26, 2021 · 3-D matrix transpose. Learn more about transpose, 3-d, miscategorized I have a 3-D matrix and I want to take the transpose of each individual vector. This is what I want to do:

  8. Matrices and Arrays - MATLAB & Simulink - MathWorks

    Jul 8, 2010 · MATLAB is an abbreviation for "matrix laboratory." While other programming languages mostly work with numbers one at a time, MATLAB® is designed to operate primarily on whole …

  9. What is the difference between .' and ' when transposing a matrix?

    May 4, 2018 · I am new to MatLab, and when I try to transpose a matrix , it seems that using .' and ' produce the same effect. For matrix a, for example, I can do a.' a' and they produce the same result...

  10. How to transpose a matrix without using built-in functions?

    Sep 28, 2019 · How do I write a function (called transposeMat) that returns the transpose of a given 3x3 matrix without using any built-in functions (I cannot use transpose (M), rot90 (M), or the transpose …