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

龙井建设局网站文化传媒公司网站建设

龙井建设局网站,文化传媒公司网站建设,河南建筑信息平台,原画培训机构排行榜R2023a来啦#xff01;#xff01;废话不多说看看新版本有啥有趣的玩意和好玩的特性叭#xff01;#xff01;把绘图放最前面叭#xff0c;有图的内容看的人多。。 1 区域填充 可以使用xregion及yregion进行区域填充啦#xff01;#xff01; x -10:0.25:10; y x.^…R2023a来啦废话不多说看看新版本有啥有趣的玩意和好玩的特性叭把绘图放最前面叭有图的内容看的人多。。 1 区域填充 可以使用xregion及yregion进行区域填充啦 x -10:0.25:10; y x.^2; plot(x,y) xregion(-5,5)Count randn(1,1000); histogram(Count) xr xregion([-2 1],[-1 2]);Count randn(1,1000); histogram(Count) xr xregion([-2 1],[-1 2]); xr(1).FaceColor r; xr(1).DisplayName Low; xr(2).FaceColor #0073FD; xr(2).DisplayName High; legendx 0:0.1:50; y 2*x .* (sin(x) cos(2*x)); plot(x,y) yregion(0,106)再提一句哈哈哈几个月前在《MATLAB | 两个较新版本中的坐标区域小技巧》这篇里当时是R2022b出了tightPosition这个函数我推送里说可以用这个函数实现个类似区域覆盖的功能结果没想到下一版就接着就出了。https://mp.weixin.qq.com/s/E7bJ0-o4qwAH87yyD0CuQg 2 新配色sky 这么多年了终于出了个新配色这个就是heatmap函数使用的默认配色 展示一下叭 Xrand(10); CFcontourf(X); colormap(sky) colorbar Xlinspace(0,1,200); CL(-cos(X*2*pi)1).^.2; r(X-.5).^2(X-.5).^2; surf(X,X,abs(ifftn(exp(7i*rand(200))./r.^.9)).*(CL*CL)*30,EdgeColor,none)colormap(sky) light material dull view(59.1823,56.1559) colorbar% 修饰一下 axgca; ax.Projectionperspective; ax.LineWidth.8; ax.XMinorTickon; ax.YMinorTickon; ax.ZMinorTickon; ax.GridLineStyle:; ax.FontNameCambria;tlinspace(0,5*pi,200); Csky(70); axgca;hold on for i1:70plot(t,sin(ti.^2./700)./(10i).*20i.*.1,Color,C(i,:),LineWidth,2); end% 坐标区域修饰 ax.YLim[0,7]; ax.XLim[0,5*pi]; ax.YTick0:.5:5; ax.XTick0:1:15; % ax.XGridon; ax.YGridon; ax.GridLineStyle-.; ax.LineWidth1.2; ax.XMinorTickon; ax.YMinorTickon; ax.Boxon; ax.FontNameCambria; ax.FontWeightbold; ax.FontSize12;3 tiledlayout水平或竖直布局 不需要预定义几行几列设置为horizontal或vertical之后就一直往上加就完事 tiledlayout(horizontal) x 1:5; nexttile plot(x) nexttile bar(x); nexttile contourf(peaks)4 网格粗细 网格粗细可以不和坐标轴粗细相同啦通过设置GridLineWidth属性设置网格粗细 tlinspace(0,4*pi,300); ax1axes(gcf,Position,[0.05,.05,1/2-.05,.95]); grid on;hold on;box on;axis tight ax1.LineWidth4; plot(t,sin(t),LineWidth,2)ax2axes(gcf,Position,[1/2.05,.05,1/2-.05,.95]); grid on;hold on;box on;axis tight ax2.LineWidth4; ax2.GridLineWidth1; plot(t,sin(t),LineWidth,2)5 轴标签旋转 轴标签可以旋转了比如编写了如下代码 plot([0 3 1 6 4 10],LineWidth,2) ylab ylabel(Y Data);ylab.Rotation 0;6 颜色与线形 可以同时变可以线条先变可以颜色先变通过设置LineStyleCyclingMethod 属性来控制 “withcolor”— 同时进行“beforecolor”— 先线条循环“aftercolor”— 先颜色循环 tlinspace(0,2.5*pi,200)1*pi;tiledlayout(horizontal,TileSpacing,tight,Padding,tight) ax1nexttile();hold on;axis tight;box on ax1.Title.Stringwithcolor; ax1.Title.FontWeightbold; ax1.Title.FontSize25; ax1.LineWidth1; ax1.LineStyleOrder{-,--,:}; ax1.LineStyleCyclingMethodwithcolor; for i1:4plot(t,sin(t-pi/3*(i-1)),LineWidth,2) endax2nexttile();hold on;axis tight;box on ax2.Title.Stringbeforecolor; ax2.Title.FontWeightbold; ax2.Title.FontSize25; ax2.LineWidth1; ax2.LineStyleOrder{-,--,:}; ax2.LineStyleCyclingMethodbeforecolor; for i1:4plot(t,sin(t-pi/3*(i-1)),LineWidth,2) endax3nexttile();hold on;axis tight;box on ax3.Title.Stringaftercolor; ax3.Title.FontWeightbold; ax3.Title.FontSize25; ax3.LineWidth1; ax3.LineStyleOrder{-,--,:}; ax3.LineStyleCyclingMethodaftercolor; for i1:4plot(t,sin(t-pi/3*(i-1)),LineWidth,2) end7 通过addStyle往app列表框增添图标 fig uifigure(Position,[200,200,200,200]); lb uilistbox(fig,Items,[Peppers,Nebula,Street],Position,[0,0,200,200]);s1 uistyle(Icon,peppers.png); s2 uistyle(Icon,ngc6543a.jpg); s3 uistyle(Icon,street1.jpg);addStyle(lb,s1,item,1); addStyle(lb,s2,item,2); addStyle(lb,s3,item,3);8 app uistack排序 创建五个具有不同标题和背景颜色的重叠面板。 f figure;a uipanel(f,Title,A,BackgroundColor,white); b uipanel(f,Title,B,BackgroundColor,cyan); c uipanel(f,Title,C,BackgroundColor,green); d uipanel(f,Title,D,BackgroundColor,yellow); e uipanel(f,Title,E,BackgroundColor,magenta);a.Position [0.35 0.50 0.30 0.35]; b.Position [0.18 0.40 0.30 0.35]; c.Position [0.08 0.21 0.30 0.35]; d.Position [0.25 0.33 0.32 0.35]; e.Position [0.30 0.27 0.30 0.35];figChildren f.Children % figChildren % % 5×1 Panel array: % % Panel (E) % Panel (D) % Panel (C) % Panel (B) % Panel (A)将c d上移 comp [c d]; uistack(comp,up);figChildren f.Children % figChildren % % 5×1 Panel 数组: % % Panel (D) % Panel (C) % Panel (E) % Panel (B) % Panel (A)当然uistack可以设置参数为up,down,top,bottom。 9 uipanel border 通过BorderColor,BorderWidth可设置uibuttongroup及uipanel边框颜色和粗细 f figure();auipanel(f,Title,A,BorderColor,[.8,0,0],BorderWidth,8); buipanel(f,Title,B,BorderColor,[0,0,.8],BorderWidth,8);a.Position [0.2 0.4 0.7 0.4]; b.Position [0.1 0.2 0.5 0.4];10 uiimage 动图及链接 fig uifigure(Position,[100,100,300,300]); im uiimage(fig,ImageSource,test.gif,Position,[0,0,200,200]); im.ScaleMethod scaledown;将图像配置为点击时打开链接 fig uifigure; im uiimage(fig); im.ImageSource membrane.png; im.URL https://www.mathworks.com/; im.Tooltip Go to www.mathworks.com;11 app uifigure 鼠标指针 uifigure 鼠标指针的鼠标指针可以自定义啦。 fig uifigure; fig.Pointerwatch;光标能设置的类型不多 但也能自定义为一些其他形状看看这篇叭~https://mp.weixin.qq.com/s/wEAOEVUNEsIDysWRce29kg 12 默认不再安装本地文档 就是说本地默认不会再存储函数的介绍文档了一些函数介绍需要联网才能看以下在断网的时候分别在R2022b及R2023a命令行窗口运行: doc plot可以看到R2022b能够调出本地文档R2023a只会提醒你没联网有好有坏吧好处是能减小MATLAB的安装大小统计了一些常用的包都不安装文档可以节省10G左右空间我装R2023a总体积15G左右。 当然如果经常在没网的地方默默敲代码还是可以手动装文档的https://ww2.mathworks.cn/help/install/ug/install-documentation.html 13 实时编辑器更新 实时编辑器增添了文件选择控件 隐藏代码时对齐部分控件这确实是没啥用的小更新比如我控件名字BBBBBBB比A长很多也会自动对齐 14 代码自动修复 逻辑复杂的代码就别想了官方给的简单例子假设编写了名为exampleScript.m的m文件其中内容为 x [1 2 3] for n 1:3y(n) x end命令行窗口运行如下代码就能获得问题列表 issuescodeIssues(exampleScript)exampleScript.m info auto 在语句后添加分号以隐藏脚本输出。 exampleScript.m info manual 变量似乎要更改脚本中每个循环迭代的大小。请考虑对速度进行预分配。 exampleScript.m info auto 在语句后添加分号以隐藏脚本输出。只有标注auto的才能自动修复 再在命令行窗口运行如下代码 fix(issues,NOPTS)emmmmmmmmm发现MATLAB自动帮你加了俩分号哈哈哈哈哈哈关于没预定义y管都没管。。。。。目前来看估计得等好几代后才会有真正有用的自动代码修复。。。 15 获取所有元素的组合 一个非常有用的函数combinations ID [A B C]; color [red blue green]; sz [small large];T combinations(ID,color,sz)运行结果 T 18×3 tableID color sz ___ _______ _______A red smallA red largeA blue smallA blue largeA green smallA green largeB red smallB red largeB blue smallB blue largeB green smallB green largeC red smallC red largeC blue smallC blue largeC green smallC green large16 数据去除NaN 一个很有用的函数fillmissing2可以将二维数据中NaN部分数值用周围数的插值替代 A magic(5); A(1,2) NaN; A(3:4,3:4) NaN构建的矩阵展示 A 5×517 NaN 1 8 1523 5 7 14 164 6 NaN NaN 2210 12 NaN NaN 311 18 25 2 9去除NaN值 F fillmissing2(A,nearest)F 5×517 1 1 8 1523 5 7 14 164 6 7 22 2210 12 25 3 311 18 25 2 9官方给了一个填充效果可视化的例子 n 51; [x,y] meshgrid(linspace(-2,2,n)); f x.^2-y.^2;NaNPercent 0.05; randEntries randperm(n^2,round(NaNPercent*n^2)); f(randEntries) NaN;F fillmissing2(f,linear); x reshape(x,n^2,1); y reshape(y,n^2,1); f reshape(f,n^2,1); F reshape(F,n^2,1);filledData scatter3(x,y,F,24,red,filled,...MarkerEdgeColorblack); hold on originalData scatter3(x,y,f,24,green,filled,...MarkerEdgeColorblack); legend([filledData,originalData],...{Filled,Original},Locationnorth)当然一维补全也有fillmissing函数 x [-4*pi:0.1:0, 0.1:0.2:4*pi]; A sin(x);A(A 0.75 A 0.5) NaN;[F,TF] fillmissing(A,linear,SamplePoints,x);scatter(x,A,filled) hold on scatter(x(TF),F(TF),filled) legend(Original Data,Filled Data)17 随机逻辑数组构建 目前来看还是比较鸡肋以下两种写法说实话区别不大可能也就速度略快 tic A1randi([0 1],5)0; toctic A2randi([0 1],5,logical); toc小数组时新写法创建速度是旧写法的两倍但是对于比较大的数组来说俩速度几乎完全一致。 完 以上是本次更新中比较有趣的内容更的属实不少反正才15G左右这不赶快进行一波新版本的安装
http://www.hkea.cn/news/14514216/

相关文章:

  • 小视频网站开发流程图搜索百度指数
  • 如何寻找seo网站建设客户制作手机app开发
  • 怎么用linux做网站佛山微网站建设哪家专业
  • 写作网站投稿赚钱搜索引擎营销实训报告
  • 免费做ppt的网站手机做任务网站有哪些内容
  • 网站初期 权重怎么做建设团队网站
  • 鞍山网站制作谁家好网站的制作公司
  • 手机网站多少钱一个新手做网页用什么软件
  • 网站删除留言板功能删除长宁区网站建设设计话色
  • 佛山网站关键词优化公司优化营商环境评价
  • 网站有什么用wordpress修改邮件地址
  • 备案的域名拿来做别的网站淄博市沂源县建设局网站
  • 哈尔滨模板建站服务商wordpress 响应式幻灯片
  • 大连网页网站制作建立自我追求无我
  • 西宁市城乡规划建设局网站wordpress内链 非插件
  • 普通网站建设163企业邮箱官网
  • 高端建站什么意思河北中瑞建设集团有限公司网站
  • html5网络公司网站模板nginx wordpress 管理
  • asp网站开发pdfwordpress基本
  • 备案 网站内容uncode wordpress主题
  • 网站 云端百度搜索如何去广告
  • 做同城信息网站怎么赚钱网页设计与网站建设的课后习题答案
  • 温州网站建设平台网店出售
  • 免费网站源码产品广告设计
  • 如何快速建立网站wordpress无法选择服务器配置
  • 一个公司做100个网站应用公园app在线制作
  • c sql网站开发品牌设计的意义
  • 厦门企业制作网站方案手机建站平台哪个好
  • 网站建设 每年费用学校网站建设渠道
  • edu域名网站网站建设费需要摊销吗