필터 지우기
필터 지우기

'{:}', ' .' '

조회 수: 25 (최근 30일)
Tomas
Tomas 2012년 4월 29일
Hi, I would like to know what does these expressions means? Cant find anywhere, but a lot of ppl are using them:
'{:}', ' .' '
Ty :)

채택된 답변

per isakson
per isakson 2012년 4월 29일
Is that a serious question? Search for "Special Characters" in the documentation.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2012년 4월 29일
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.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by