필터 지우기
필터 지우기

Print curly braces in a plot

조회 수: 95 (최근 30일)
Adriano
Adriano 2011년 9월 20일
답변: Joe Lettieri 2023년 5월 24일
Hello everyone,
I am trying draw a curly brace to indicate a distance in a plot (with some accompanying text). The brace should be "stretchable", i.e. vary its length according to a beginning and end point.
This exact same question has been asked in the Newsreader but no answer was obtained.
Any suggestions?

채택된 답변

Patrick Kalita
Patrick Kalita 2011년 9월 20일
There's nothing that ships with MATLAB that does exactly what you want. The 'doublearrow' annotation is probably the thing that comes the closest. It can be used to indicate a distance in a plot, but it's clearly not a brace.
If you're really committed to having a brace, I would just draw some kind of brace-like shape using the line command. The task then becomes generating x-data and y-data that define your brace. This can be as simple or as complicated as you like. Here's one idea:
% Here's the plot I'm annotating
plot(1:10)
% These define the placement and size of the brace
x = 6;
y1 = 0;
y2 = 6;
width = 0.2;
% Make some x-data and y-data
line_x = x + [0, 0.5, 0.5, 1, 0.5, 0.5, 0]*width;
line_y = y1 + [0, 0.02, 0.48, 0.5, 0.52, 0.98, 1]*(y2-y1);
% Draw the brace and some text, too, for fun.
line(line_x, line_y, 'Color', 'k')
text(x+1.5*width, y1 + 0.5*(y2-y1), 'Whoaaa! Look at this gap!');
You can see that's a relatively primitive brace. If I wanted to make it fancier, I might start looking at using Bézier curves.

추가 답변 (3개)

Pål Næverlid Sævik
Pål Næverlid Sævik 2012년 10월 22일
I know this is one year old, but I had the same problem. I therefore wrote a function which plots a curly brace on the current figure. The code can be found at http://www.mathworks.com/matlabcentral/fileexchange/38716-curly-brace-annotation, or by searching Matlab File Exchange for "Curly Brace Annotation".

Sean de Wolski
Sean de Wolski 2011년 9월 20일
I would recommend starting by reading the tutorial in:
doc
MATLAB>User Guide>Graphics>Annotating Graphs>Adding Text Annotations to Graphs

Joe Lettieri
Joe Lettieri 2023년 5월 24일
Another idea is to use the text command and a LaTeX math mode brace and just rotate it and change the font size...
clear; clc;
x = linspace(0,2*pi,100);
y = sin(x);
figure(1); clf;
plot(x,y)
grid on;
ylim([-1.25, 1.25]);
text(2.8, 0.75, '$\{$', 'rotation', 210, 'fontsize', 40, ...
'interpreter', 'latex');
text(2.85, 0.75, 'My favorite part', 'fontsize', 14, ...
'interpreter', 'latex');

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by