필터 지우기
필터 지우기

How do I make greek letters appear as symbols and use them as variables?

조회 수: 29 (최근 30일)
'\lambda' = arctan(y/x)
This is my current code. How do I make lambda appear as a symbol, and then set it as a variable? Thanks.

채택된 답변

Walter Roberson
Walter Roberson 2024년 2월 2일
You cannot do that.
If you use the Symbolic Toolbox, and you are using LiveScript (or MATLAB Online, or MATLAB Answers), and you use a unbound symbolic variable named after a greek letter, then in output the symbol will be rendered.
syms alpha beta lambda
lambda = atan2(beta,alpha)
lambda = 
But it only works for unbound variables; variables that have been bound to a value get replaced by the value
1 + lambda
ans = 

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Labels and Annotations에 대해 자세히 알아보기

태그

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by