Borrar filtros
Borrar filtros

Why do we usually use M,N,P to indicate dimensions?

10 visualizaciones (últimos 30 días)
Vitaly
Vitaly el 28 de Jul. de 2011
taken to indicate the dimension of the array m, n, p. the meaning of these letters I guess that m - main n -??? p - page?

Respuestas (2)

Paulo Silva
Paulo Silva el 28 de Jul. de 2011
They are just variables when used like this:
[m,n,p] = size(rand(2,3,4))
m holds the first dimension (the number of rows)
n holds the second dimension (the number of columns)
p holds the third dimension of the array, think about it like the number of pages
  4 comentarios
Paulo Silva
Paulo Silva el 28 de Jul. de 2011
just variables, no particular meaning, use the variables you like the most
Walter Roberson
Walter Roberson el 28 de Jul. de 2011
Historical habit in mathematics, just like using the beginning of the alphabet to represent constants and using the end of the alphabet to represent variables.

Iniciar sesión para comentar.


karthika
karthika el 28 de Jul. de 2011
m and p gives the number of rows and columns
  2 comentarios
Vitaly
Vitaly el 28 de Jul. de 2011
as I know m and n gives the number of rows and columns, is any advantage to use p for columns due the best perfomance?
Walter Roberson
Walter Roberson el 28 de Jul. de 2011
No. The programming language doesn't care which variable name you use, but you will lose efficiency from people reading your code and attempting to figure out what your names mean. If you are going to use non-traditional names, use names that are self-explanatory.

Iniciar sesión para comentar.

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by