How to draw the letter phi on matlab?
Ältere Kommentare anzeigen
Hello, I have a home work where I need to draw the Greek letter phi on matlab but I can’t find the right equation to do it. Can somebody help me? I would like to draw it by using equations for the x and the y.
Antworten (2)
Here are bunch of greek characters and how you can put them in a string/character:
sprintf('%c ', 910:1000)
phi = sprintf('%c',934)
x = 0.4;
y = 0.3;
text(x,y,'\phi')
Kategorien
Mehr zu Labels and Annotations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
