Why can't matlab2tikz represent annotations, such as textarrow, on figures?

8 views (last 30 days)
Programe:
close all; clear all; clc
x=1:100; y=sin(x);
figure(1);
plot(x,y);
axis([0 100 -5 5]);
annotation('textarrow',[0.2 0.5],[0.2 0.5],'string','Note');
matlab2tikz('graph.tikz', 'height', '\figureheight', 'width', '\figurewidth');
Problem:
Warning: Don't know class 'scribe.textarrow'. Default handling.
> In matlab2tikz>userWarning at 4568
In matlab2tikz>drawHggroup at 2079
In matlab2tikz>handleAllChildren at 691
In matlab2tikz>drawAxes at 874
In matlab2tikz>saveToFile at 505
In matlab2tikz at 414
Thanks to all.
  2 Comments
sixwwwwww
sixwwwwww on 9 Dec 2013
matlab2tikz is not a predefined function of MATLAB. Can you show the function itself to find the source of error within that function?
Nuno
Nuno on 10 Dec 2013
It's easier to send you the file with the functions. Thank you for your time.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 9 Dec 2013
Questions about why it does or does not support something should be addressed to the author of the code. The File Exchange is code contributed by volunteers.

More Answers (1)

Nuno
Nuno on 10 Dec 2013
OK, and Thank you for the information.

Categories

Find more on Printing and Saving 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!