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

peaks函数用法

时间:2020-04-08 21:01:28      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:fun   ini   mesh   markers   RKE   alt   minimum   double   param   

peaks

介绍

  • peaks() 函数本质上是一个二元高斯分布的PDF;
  • 从图像上看,它有3个极小点,3个极大点;
z=peaks(50)
mesh(z)

技术图片

应用举例

技术图片

代码

% PeaksLabel.m

Z=peaks(30); 
% Z: 30*30 double matrix;
% Look for the highest point;

zmax=max(Z);
Zmax=max(zmax);
% Firstly find the maximum of 30 columns,return zmax~1x30
% Secondly find the maximum of zmax, return 1x1

[Ymax, Xmax]=find(Z==Zmax);
% Y is first parameter using find()

zmin=min(Z);
Zmin=min(zmin);
[Ymin,Xmin]=find(Z==Zmin);

% plot func Z;
mesh(Z);hold on;

% label maximum and minimum point
plot3(Xmax,Ymax,Zmax,‘k.‘,‘markersize‘,20);hold on
plot3(Xmin,Ymin,Zmin,‘k.‘,‘markersize‘,20);hold on

text(Xmax,Ymax,Zmax,[‘max_value=‘,num2str(Zmax)])
text(Xmin,Ymin,Zmin, [‘min_value=‘,num2str(Zmin)])

最终的效果图:

技术图片

peaks函数用法

标签:fun   ini   mesh   markers   RKE   alt   minimum   double   param   

原文地址:https://www.cnblogs.com/rongyupan/p/12662541.html

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