Is there a method to linear index to a transpose matrix without taking the transpose?

10 visualizaciones (últimos 30 días)
Is there a method to linear index to a transpose matrix without taking the transpose?
  5 comentarios
Image Analyst
Image Analyst el 19 de Jun. de 2019
What code is that? Where did you attach it? Who wrote it?
And what is wrong with using the transpose operator '? Why do you need a different way?
Douglas Farinelli
Douglas Farinelli el 19 de Jun. de 2019
The matrix is rather large ... did not desire a copy of it.

Iniciar sesión para comentar.

Respuesta aceptada

Douglas Farinelli
Douglas Farinelli el 18 de Jun. de 2019
Yes want to index the matrix by rows vs columns. I suppose i can use the function ind2sub and switch the row and col.
  2 comentarios
Walter Roberson
Walter Roberson el 18 de Jun. de 2019
Yes.
Note: for a 2D matrix, ind2sub is (column_number - 1) * number_of_rows + row_number .
You can therefore optimize the access (row_number, column_number) to the transpose (column_number, row_number) as
(row_number - 1) * number_of_rows + column_number

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by