码迷,mamicode.com
首页 > 其他好文 > 详细

Maven dependencyManagement、install/package/deploy

时间:2020-08-10 14:31:57      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:connect   https   子项目   man   复杂   子模块   maven私服   相对   命令   

1.单纵、双纵坐标

技术图片

 

 1 clear all;clc;close all;
 2 %% 数据计算
 3 x=(0:0.001:20);
 4 y_0=besselj(0,x);
 5 y_1=besselj(1,x);
 6 y_2=besselj(2,x);
 7 %% 数据降密度
 8 ind=1:1:60;
 9 xo(ind)=x(ind*round((length(x)/length(ind))));
10 y_0o(ind)=y_0(ind*round((length(x)/length(ind))));
11 y_1o(ind)=y_1(ind*round((length(x)/length(ind))));
12 y_2o(ind)=y_2(ind*round((length(x)/length(ind))));
13 %% 窗口调整
14 figure
15 set(gcf,Color,w);%gcf:当前图窗的句柄
16 %% 单纵坐标图
17 subplot(1,2,1)
18 plot(xo,y_0o,k-^,MarkerSize,4, linewidth,3);
19 grid on
20 xlabel(x值);
21 ylabel(y值);
22 xlim([0 20])
23 ylim([-2 2])
24 set (gca,FontSize,11.5,fontweight,demi);
25 legend(0阶贝塞尔,location,southwest);
26 %% 双纵坐标图
27 subplot(1,2,2)%双纵坐标图
28 grid on
29 yyaxis left
30 plot(xo,y_1o,g-s,MarkerSize,4, linewidth,3);
31 set(gca,ycolor,k) 
32 ylim([-2 2])
33 ylabel(y值);
34 
35 yyaxis right
36 plot(xo,y_2o,r-.v,MarkerSize,4, linewidth,3);
37 ylim([-2 2])
38 set(gca,ycolor,r) 
39 ylabel(y值);
40 set (gca,FontSize,11.5,fontweight,demi);
41 
42 xlabel(x值);
43 xlim([0 20])
44 legend(1阶贝塞尔, 2阶贝塞尔,location,southwest);

2.

 

Maven dependencyManagement、install/package/deploy

标签:connect   https   子项目   man   复杂   子模块   maven私服   相对   命令   

原文地址:https://www.cnblogs.com/land-fill/p/13469514.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!