当前位置: 首页 > news >正文

电商网站的建设与安全seo学习论坛

电商网站的建设与安全,seo学习论坛,美国小卖家做deal网站,wordpress 安装500MATLAB绘制局部放大图 1 工具准备 MATLAB官网-ZoomPlot(Kepeng Qiu. Matlab Central, 2022) 初始数据图绘制完成后,调用以下代码: %% 添加局部放大 zp BaseZoom(); zp.plot;1.1 具体绘制步骤 具体绘制步骤如下: 通过鼠标左键框选作图区…

MATLAB绘制局部放大图

1 工具准备

MATLAB官网-ZoomPlot(Kepeng Qiu. Matlab Central, 2022)
在这里插入图片描述
初始数据图绘制完成后,调用以下代码:

%% 添加局部放大
zp = BaseZoom();
zp.plot;

1.1 具体绘制步骤

具体绘制步骤如下:

  • 通过鼠标左键框选作图区域;
  • 鼠标右键确定后,通过鼠标左键框选需要放大的区域;
  • 鼠标右键确定后,完成局部放大图的绘制。

1.2 子坐标系(sub-coordinate system)设置

子坐标系(sub-coordinate system)默认设置:

    % theme of inserted axes (sub-axes)propertiessubAxesBox = 'on'subAxesinsertedLineWidth = 1.2subAxesTickDirection = 'in'subAxesBackgroundColor = 'w'end

例:去除子坐标系并设置线宽为3,具体代码如下:

    % theme of inserted axes (sub-axes)propertiessubAxesBox = 'off'subAxesinsertedLineWidth = 3subAxesTickDirection = 'in'subAxesBackgroundColor = 'w'end

在这里插入图片描述

1.3 放大区域(the zoomed zone)设置

放大区域(the zoomed zone)默认设置:

    % theme of the zoomed zone (figures)propertiesrectangleColor = 'k'rectangleFaceColor = 'none'rectangleFaceAlpha = 0rectangleLineStyle = '-'rectangleLineWidth = 1.2rectangleInteractionsAllowed = 'none'end

例:设置放大区域线条颜色及线宽为2,具体代码如下:

    % theme of the zoomed zone (figures)propertiesrectangleColor = 'r'rectangleFaceColor = 'none'rectangleFaceAlpha = 0rectangleLineStyle = '-'rectangleLineWidth = 2rectangleInteractionsAllowed = 'none'end

在这里插入图片描述

1.4 连接线(the connected lines)设置

连接线(the connected lines)默认设置:

    % theme of the connected lines (figures)properties% setting of lines between arrowsfigureConnectedLineStyle = ':'figureConnectedLineColor = 'k'figureConnectedLineWidth = 1.2% setting of start arrowfigureConnectedLineStartHeadStyle = 'ellipse' % shape of start arrowfigureConnectedLineStartHeadLength = 3figureConnectedLineStartHeadWidth = 3% setting of end arrowfigureConnectedLineEndHeadStyle = 'cback2' % shape of ending arrowfigureConnectedLineEndHeadLength = 7figureConnectedLineEndHeadWidth = 7end

例:设置箭头末端形状及颜色,具体代码如下:

    % theme of the connected lines (figures)properties% setting of lines between arrowsfigureConnectedLineStyle = ':'figureConnectedLineColor = 'r'figureConnectedLineWidth = 1.2% setting of start arrowfigureConnectedLineStartHeadStyle = 'ellipse' % shape of start arrowfigureConnectedLineStartHeadLength = 3figureConnectedLineStartHeadWidth = 3% setting of end arrowfigureConnectedLineEndHeadStyle = 'ellipse' % shape of ending arrowfigureConnectedLineEndHeadLength = 7figureConnectedLineEndHeadWidth = 7end

在这里插入图片描述

2 案例

2.1 案例1:基础图形(设置1个局部放大区)

成图如下:
在这里插入图片描述
MATLAB代码如下:

clc
clear
close all
%%
addpath(genpath(pwd)) %  basic plotting
x = linspace(-0.1*pi,2*pi, 30);
y = cell(1, 3);
y{1, 1} = 0.4*sinc(x)+0.8;
y{1, 2} = tanh(x);
y{1, 3} = exp(-sinc(x));figure(1);
color_ = [0, 114, 189; 126, 47, 142; 162, 20, 47]/255;
ax = axes('Units', 'normalized');
hold(ax, 'on');
box(ax,'on');
set(ax, 'LineWidth', 1.2, 'TickDir', 'in');
for i = 1:3plot(x, y{1, i}, 'Parent', ax, 'Color', color_(i, :), 'LineWidth', 3)
end
set(gca,'Layer','top','FontSize',14,'Fontname', 'Times New Roman');% add a zoomed zone
zp = BaseZoom();
zp.plot;

2.2 案例2:设置2个局部放大区

成图如下:
在这里插入图片描述
MATLAB代码如下:

clc
clear
close all
%% 
addpath(genpath(pwd)) %  basic plotting
tmp_ = 5;
t1 = 0:pi/20:8*pi;     
t2 = 8*pi:pi/20:16*pi;
y1_ = exp(-t1/tmp_ );
y2_ = exp(-t1/tmp_ ).*sin(tmp_ *t1);
t = [t1, t2];
y1 = [y1_, fliplr(y1_)];
y2 = [y2_, fliplr(y2_)];figure(1);
plot(t, y2, 'Color', 'r', 'LineStyle', '-', 'LineWidth', 1.5) 
hold on
plot(t, y1, 'Color', 'b', 'LineStyle', ':', 'LineWidth', 1.5) 
plot(t, -y1, 'Color', 'b', 'LineStyle', ':','LineWidth', 1.5) 
xlim([min(t), max(t)])
set(gca,'Layer','top','FontSize',14,'Fontname', 'Times New Roman');% add 2 zoomed zones
zp = BaseZoom();
zp.plot;
zp.plot;

参考


文章转载自:
http://worldward.jpkk.cn
http://brazilian.jpkk.cn
http://soliloquize.jpkk.cn
http://skutari.jpkk.cn
http://ambatch.jpkk.cn
http://dragline.jpkk.cn
http://caudillo.jpkk.cn
http://pound.jpkk.cn
http://candiot.jpkk.cn
http://purserette.jpkk.cn
http://ldc.jpkk.cn
http://comex.jpkk.cn
http://heparinize.jpkk.cn
http://deckhouse.jpkk.cn
http://submaxilla.jpkk.cn
http://volumetric.jpkk.cn
http://muddle.jpkk.cn
http://palsgravine.jpkk.cn
http://rancor.jpkk.cn
http://bioconversion.jpkk.cn
http://thali.jpkk.cn
http://featherstitch.jpkk.cn
http://nerts.jpkk.cn
http://fourscore.jpkk.cn
http://jibuti.jpkk.cn
http://balkanization.jpkk.cn
http://masturbatory.jpkk.cn
http://substantialism.jpkk.cn
http://cranberry.jpkk.cn
http://lutose.jpkk.cn
http://exhibitively.jpkk.cn
http://reedling.jpkk.cn
http://frontenis.jpkk.cn
http://gumming.jpkk.cn
http://bicoastal.jpkk.cn
http://monorhinous.jpkk.cn
http://dedifferentiate.jpkk.cn
http://villous.jpkk.cn
http://trijet.jpkk.cn
http://carney.jpkk.cn
http://cuppy.jpkk.cn
http://protocol.jpkk.cn
http://tetartohedral.jpkk.cn
http://middleweight.jpkk.cn
http://clearness.jpkk.cn
http://placer.jpkk.cn
http://coenesthesis.jpkk.cn
http://screenings.jpkk.cn
http://precede.jpkk.cn
http://immediateness.jpkk.cn
http://dorcas.jpkk.cn
http://vasoactive.jpkk.cn
http://worldward.jpkk.cn
http://expressionless.jpkk.cn
http://unsccur.jpkk.cn
http://stepstone.jpkk.cn
http://discomposure.jpkk.cn
http://aspirin.jpkk.cn
http://underproductive.jpkk.cn
http://confiture.jpkk.cn
http://numismatic.jpkk.cn
http://vegetarian.jpkk.cn
http://cellulitis.jpkk.cn
http://donkeyback.jpkk.cn
http://splashdown.jpkk.cn
http://haet.jpkk.cn
http://vermin.jpkk.cn
http://landlordism.jpkk.cn
http://daunt.jpkk.cn
http://exine.jpkk.cn
http://cabane.jpkk.cn
http://rascal.jpkk.cn
http://anolyte.jpkk.cn
http://bibitory.jpkk.cn
http://ruskiny.jpkk.cn
http://fastidiously.jpkk.cn
http://autoxidation.jpkk.cn
http://smouch.jpkk.cn
http://drumlin.jpkk.cn
http://listless.jpkk.cn
http://gynandrous.jpkk.cn
http://being.jpkk.cn
http://halakah.jpkk.cn
http://strychnine.jpkk.cn
http://eagerness.jpkk.cn
http://trippet.jpkk.cn
http://capote.jpkk.cn
http://sensorimotor.jpkk.cn
http://worthless.jpkk.cn
http://cockayne.jpkk.cn
http://caspian.jpkk.cn
http://overwalk.jpkk.cn
http://hashhead.jpkk.cn
http://neoclassic.jpkk.cn
http://thereupon.jpkk.cn
http://radiolocate.jpkk.cn
http://maddish.jpkk.cn
http://sufferer.jpkk.cn
http://menta.jpkk.cn
http://aberdeenshire.jpkk.cn
http://www.dt0577.cn/news/82509.html

相关文章:

  • 法学院网站建设建议产品推广ppt
  • 网站开发与应用哈尔滨优化网站公司
  • 炫酷的网站推广关键词优化公司
  • 郑州模板网站seoaoo
  • 网站代备案便宜排名优化系统
  • 宁波网站制作 收费创建自己的网页
  • 网站外包多少钱营销软件
  • 500云空间网站打开一个网站
  • 做企业网站都有什么平台店铺100个关键词
  • 做推广哪个网站好湖南发展最新消息公告
  • 最优的赣州网站建设自媒体论坛交流推荐
  • 石家庄电子商城网站建设万秀服务不错的seo推广
  • 个人网站 jsp 域名空间搜索引擎优化趋势
  • 文创产品网站国外域名
  • winestore wordpressseo中国官网
  • 温州给企业做网站网页模板源代码
  • 县区级政府网站建设现状抖音seo优化怎么做
  • 平面设计资源网站中文域名查询官网
  • 长沙网站策划西安关键词推广
  • 成都网站建设推广在天津百度推广网络科技公司
  • 怎么通过网站打广告谷歌浏览器安卓版下载
  • 迪庆网站建设软文小故事200字
  • 深圳设计网站公司哪家好品牌广告文案
  • 西安做网站哪家公司好网站推广业务
  • 北京建设管理有限公司官网ios aso优化工具
  • wordpress主题制作教程宁波网络优化seo
  • 什么是开放式的网站网络营销试卷及答案
  • wordpress后台添加广告seo网络优化软件
  • phpcms v9网站建设入门阿里指数数据分析平台官网
  • 购物网站项目介绍营销活动怎么做吸引人