a question about plot
Show older comments
Hey, I am new to Matlab. How can I generate a capital letter "F" in a plot? Thank you!
Answers (2)
Star Strider
on 12 Feb 2016
Try this:
figure(1)
plot([1 2], [3 3],'k')
hold on
plot([1 1], [1 3],'k')
plot([1 1.7], [2 2],'k')
hold off
axis([0 4 0 4])
Image Analyst
on 12 Feb 2016
Use text():
% Plot some data, or whatever...
plot(0:4, 'b*-')
% Put a big F on the plot
text(2, 3, 'F', 'FontSize', 30, 'Color', 'r', 'FontWeight', 'bold');
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!