About 7,640,000 results
Open links in new tab
  1. transpose - Transpose vector or matrix - MATLAB - MathWorks

    Create a matrix of real numbers and compute its transpose. B has the same elements as A , but the rows of B are the columns of A and the columns of B are the rows of A . A = magic(4)

  2. transpose - Symbolic matrix transpose - MATLAB - MathWorks

    Transpose of Complex Matrix Create a 2 -by- 2 matrix, the elements of which represent complex numbers. syms x y real A = [x + y*i x - y*i; y + x*i y - x*i]

  3. ctranspose - Complex conjugate transpose - MATLAB - MathWorks

    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 …

  4. Basic Matrix Operations - MATLAB & Simulink Example

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

  5. How can I transpose a dataset or table? - MATLAB Answers

    Mar 26, 2018 · If the goal is to transpose the data in the table, it's a safe bet that all the data are the same type. Use table2array and array2table instead. Beginning in R2018a, the best way to …

  6. Matrices in the MATLAB Environment - MATLAB & Simulink

    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 …

  7. Reshaping and Rearranging Arrays - MATLAB & Simulink

    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 …

  8. 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 …

  9. Make a transpose function in for loop - MATLAB Answers

    Nov 30, 2011 · I have to make transpose function in for loop for matrix. I am trying to get it to work but it needs some imporvements. function cd=MyTranspose(A) [row col] = size(A); for …

  10. How can i generate hermitian of a matrix in matlab?

    Apr 21, 2016 · Transpose for real matrices is equivalent to Hermitian (complex conjugate transpose) for complex matrices. Therefore, you can use the same matlab operator to …

Refresh