当前位置:网站首页>Matlab paper chart standard format output (dry goods)
Matlab paper chart standard format output (dry goods)
2022-07-05 13:18:00 【Yuanbote】
Reprint source ——MATLAB Paper chart standard format output ( dried food )
I hope you can jump to the original link to watch , thank you !
// Several commonly used RGB Color of format , Optional use
color=[1,0.84314,0;
0.80392,0.36078,0.36078;
0,0.749021,1;
0.82353,0.41176,0.11765;
0.6902,0.87843,0.90196;
1,0,0;
0,1,0;
0,0,1;]
%%%%gca Represents the coordinate axis ;gcf Diagram ;axes Represents the Cartesian coordinate system
%%%%gcf Is the graphic handle object of the target image ,gca Is the coordinate axis handle object of the target image
%%%% Draw the curve of image change , And set the lineweight to 1.5 pounds , The line width of the coordinate axis is 0.5 pounds ;
%%%% Chinese is in Song Dynasty 、 English means new Rome , It is generally the same size as the text of the header of the chart in the text ;
%%%% Different linear differentiation > Color discrimination , Many periodicals are printed in black and white ; But the electronic version submitted can be matched with appropriate colors, which is very beautiful , Such as green and red ;
plot(t,a,'LineWidth',1.5,'Color',color(1,:));
hold on;
plot(t,b,'LineWidth',1.5,'Color',color(3,:));
hold on;
plot(t,c,'LineWidth',1.5,'Color',color(6,:));
%%%% Set the font and text size of the name of the coordinate axis
%%%% Chinese is in Song Dynasty 、 English means new Rome , It is generally the same size as the text of the header of the chart in the text , It can be adjusted according to specific conditions ;
%%%%% Be careful : Small five corresponds to 9 Pound size ; Number five corresponds to 10.5, Little four corresponds to 12, Number four corresponds to 14!
ylabel('\fontname{
Song style }\fontsize{
9} Time /\fontname{
Times New Roman}\fontsize{
9}ms');
xlabel('\fontname{
Song style }\fontsize{
9} Time \fontname{
Times New Roman}\fontsize{
9}ms');
% Set up x Shaft range and scale
set(gca,'XLim',[0 10000]);%X The data display range of the axis
set(gca,'XTick',[0:1000:10000]);% Set the coordinate scale to be displayed
% Set up y Shaft range and scale
set(gca,'YLim',[0 10000]);%X The data display range of the axis
set(gca,'YTick',[0:1000:10000]);% Set the coordinate scale to be displayed
%%%%% Set the axis direction , Line width , by 0.5 pounds ;
set(gca,'XAxisLocation','origin');
set(gca,'YAxisLocation','origin');
set(gca,'linewidth',0.5,'fontsize',9,'fontname','Times New Roman');
%%% Set the size of the output picture , according to A4 Remove half the width of the page margin to set ( Double column typesetting ), Ensure that the output image is not resized when inserted ;
%%% With A4 Take paper as an example , The width is about 21cm, The margins are usually 5cm, So if the picture is centered in a single column , You can set the width as 8~12cm.
%%%% If the picture is centered in two columns , You can set the width as 5~7cm, Once the picture is output , Save directly. You can't change the size of the picture during the insertion process , Ensure that the font size set corresponds to the size in the text .
Width=5.2;Height=4.4;% Unit: cm !!! Change here according to requirements ...
ScreenSize=13.3; % The screen size , In inches , And it should be noted that this value usually refers to the length of the diagonal , The width and height should be calculated according to Pythagorean theorem
ScreenSizeInCM=ScreenSize*2.45; %1 Inches equals 2.45 centimeter , Length conversion
scrsz = get(0,'ScreenSize'); % Get the screen resolution
ScreenWidth=ScreenSizeInCM/sqrt(1+(scrsz(4)/scrsz(3))^2);% Wide screen , Unit: cm
ScreenHeight=ScreenWidth*scrsz(4)/scrsz(3);% The screen is high , In centimeters
WidthRatio=Width/ScreenWidth;% The ratio of the expected width of the graph to the screen width
HeightRatio=Height/ScreenHeight;% The ratio of the desired height of the graph to the screen height
set(gcf,'Unit','Normalized','Position',[0.4 0.4 WidthRatio HeightRatio]);% Set the size of the drawing , There is no need to go to word Inside and then resize
%%%%= Remove the frame of the legend in the figure , Set the text size and font of the legend
h=legend({
'\fontname{
Song style }\fontsize{
9} Time \fontname{
Times New Roman}\fontsize{
9}ms',...
'\fontname{
Song style }\fontsize{
9} Time \fontname{
Times New Roman}\fontsize{
9}ms',...
'\fontname{
Song style }\fontsize{
9} Time \fontname{
Times New Roman}\fontsize{
9}ms'});
set(h,'box','off');
%%% Set the title of the drawing
title_str = '\fontname{ Song style } Time statistics ';
title(title_str,'FontSize',9);
%%%% Save in emf Format ( Vector format ), The resolution is set to 600, Compare HD .
边栏推荐
- MSTP and eth trunk
- STM32 and motor development (from architecture diagram to documentation)
- My colleague didn't understand selenium for half a month, so I figured it out for him in half an hour! Easily showed a wave of operations of climbing Taobao [easy to understand]
- Overflow toolbar control in SAP ui5 view
- The solution of outputting 64 bits from printf format%lld of cross platform (32bit and 64bit)
- Backup and restore of Android local SQLite database
- leetcode:221. Maximum square [essence of DP state transition]
- Reflection and imagination on the notation like tool
- Introduction aux contrôles de la page dynamique SAP ui5
- go map
猜你喜欢

Pandora IOT development board learning (HAL Library) - Experiment 7 window watchdog experiment (learning notes)

C object storage

蜀天梦图×微言科技丨达梦图数据库朋友圈+1

先写API文档还是先写代码?

一网打尽异步神器CompletableFuture

Pycharm installation third party library diagram

Discussion on error messages and API versions of SAP ui5 getsaplogonlanguage is not a function

Principle and performance analysis of lepton lossless compression

Lb10s-asemi rectifier bridge lb10s

About the single step debugging of whether SAP ui5 floating footer is displayed or not and the benefits of using SAP ui5
随机推荐
go map
Principle and performance analysis of lepton lossless compression
STM32 and motor development (from architecture diagram to documentation)
个人组件 - 消息提示
关于 Notion-Like 工具的反思和畅想
js判断数组中是否存在某个元素(四种方法)
事务的基本特性和隔离级别
Rocky basic command 3
uni-app开发语音识别app,讲究的就是简单快速。
Pycharm installation third party library diagram
同事半个月都没搞懂selenium,我半个小时就给他整明白!顺手秀了一波爬淘宝的操作[通俗易懂]
leetcode 10. Regular Expression Matching 正则表达式匹配 (困难)
《2022年中國銀行業RPA供應商實力矩陣分析》研究報告正式啟動
Android本地Sqlite数据库的备份和还原
[daily question] 1200 Minimum absolute difference
Notion 类笔记软件如何选择?Notion 、FlowUs 、Wolai 对比评测
Actual combat simulation │ JWT login authentication
Introduction to sap ui5 dynamicpage control
Datapipeline was selected into the 2022 digital intelligence atlas and database development report of China Academy of communications and communications
Summary and arrangement of JPA specifications