How to draw the letter phi on matlab?
Mostra commenti meno recenti
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.
Risposte (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')
Categorie
Scopri di più su Labels and Annotations in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
