这是一篇我在CSDN上写的文章,放到简书上,希望能对大家有所帮助。
CSDN 地址为 https://blog.csdn.net/d_turtle/article/details/80740245
现在几乎绝大多数的论文都会有仿真,并且需要作图来直观表现算法性能。如何能将图像更加清晰,避免图片本身由于放大缩小产生的清晰度问题成为不可避免需要考虑的问题。本文介绍一种将matlab作的图导入到latex的方法。
-
打开如下网址:matlab2tikz 的github 地址
-
网址界面如下,点击下图一中的clone and download 或者 图二中的
图1update manually
对matlab2tikz 进行下载。
图2 -
解压zip 文件,并在matlab 中选择
set pathset path
,将src\
添加至路径
add folder -
运行matlab 程序,生成图片,在commond window 输入命令
commondmatlab2tikz('plot1.tikz')
如下图所示 -
在matlab 所运行程序的当前目录下,生成如下文件:
file produced -
latex 文件所在目录下建一个名为tikz 的文件夹,将生成的tikz文件复制到tikz 文件夹下,并在latex中需添加如下代码:
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
%% the following commands are needed for some matlab2tikz features
\usetikzlibrary{plotmarks}
\usetikzlibrary{arrows.meta}
\usepgfplotslibrary{patchplots}
\usepackage{grffile}
\usepackage{amsmath}
%% you may also want the following commands
%\pgfplotsset{plot coordinates/math parser=false}
%\newlength\figureheight
%\newlength\figurewidth
\begin{document}
\begin{figure}[h!]
\centering
\inputtikz{plot1}
\end{figure}
\end{document}
- 生成图片如下,放大不会改变清晰度,比截图要更严谨更准确。
网友评论