matlab2tikzext

A script to use matlab2tikz with tikzexternalize.

您现在正在关注此提交

matlab2tikzext(path,filename,width,height) exports a figure/plot by using
Nico Schlömer's matlab2tikz (File ID: #22022) to Latex/tikz.

Right before it checks by using Suresh Joel's md5 (File ID: #3432)
if the figure/plot-file has changed. If using tiksexternalize in Latex only
then a new plot will be compiled.

Many thanks to Nico Schlömer and Suresh Joel!

Inputs:

path: (String) e.g. '../latex/'
filename: (String) e.g. 'sine.tikz'
width: (Real) e.g. 6
height: (Real) e.g. 2.57

A simple example:

Matlab:

x = 0:.1:2*pi;
y = sin(x);
plot(x,y);
axis tight;
matlab2tikzext('../latex/','sine.tikz', 6, 2.57);

Latex:

\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.9}
\usepgfplotslibrary{external}
\tikzexternalize[prefix=TikzPictures/]

\begin{document}

\begin{figure}
\centering
\input{sine.tikz}
\caption{Sine}
\end{figure}

\end{document}

Needs:

- matlab2tikz (File ID: #22022),
- md5 (File ID: #3432).

引用格式

Thomas Bosse (2026). matlab2tikzext (https://ww2.mathworks.cn/matlabcentral/fileexchange/44044-matlab2tikzext), MATLAB Central File Exchange. 检索时间: .

致谢

参考作品: matlab2tikz/matlab2tikz

类别

Help CenterMATLAB Answers 中查找有关 File Operations 的更多信息

一般信息

MATLAB 版本兼容性

  • 兼容任何版本

平台兼容性

  • Windows
  • macOS
  • Linux
版本 已发布 发行说明 Action
1.0.0.0