Borrar filtros
Borrar filtros

'{:}', ' .' '

25 visualizaciones (últimos 30 días)
Tomas
Tomas el 29 de Abr. de 2012
Hi, I would like to know what does these expressions means? Cant find anywhere, but a lot of ppl are using them:
'{:}', ' .' '
Ty :)

Respuesta aceptada

per isakson
per isakson el 29 de Abr. de 2012
Is that a serious question? Search for "Special Characters" in the documentation.

Más respuestas (1)

Walter Roberson
Walter Roberson el 29 de Abr. de 2012
For reference:
.' is the transpose() operator that does NOT do conjugate transpose
{:} is for cell arrays. f(A{:}) is the same as if you had written
f(A{1}, A{2}, A{3}, A{4}, ...., A{end})
In particular, A{:} expands to a sequence of different arguments to whatever it is being called for.

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