标签: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