各位老铁们好,相信很多人对peak是什么意思都不是特别的了解,因此呢,今天就来为大家分享下关于peak是什么意思以及peak是什么单位的问题知识,还望可以帮助大家,解决大家的一些困惑,下面一起来看看吧!
本文目录
matlab中peak是什么意思a
是峰函数,peaks(30)是产生30×30的guassian分布矩阵,你可以去查查,它的help说的很明白
看看源程序就明白了。
>> type peaks
function [xz,y,z]= peaks(arg1,arg2)
%PEAKS A sample function of two variables.
% PEAKS is a function of two variables, obtained by translating and
% scaling Gaussian distributions, which is useful for demonstrating
% MESH, SURF, PCOLOR, CONTOUR, etc.
% There are several variants of the calling sequence:
%
% Z= PEAKS;
% Z= PEAKS(N);
% Z= PEAKS(V);
% Z= PEAKS(X,Y);
%
% PEAKS;
% PEAKS(N);
% PEAKS(V);
% PEAKS(X,Y);
%
% [X,Y,Z]= PEAKS;
% [X,Y,Z]= PEAKS(N);
% [X,Y,Z]= PEAKS(V);
%
% The first variant produces a 49-by-49 matrix.
% The second variant produces an N-by-N matrix.
% The third variant produces an N-by-N matrix where N= length(V).
% The fourth variant evaluates the function at the given X and Y,
% which must be the same size. The resulting Z is also that size.
%
% The next four variants, with no output arguments, do a SURF
% plot of the result.
%
% The last three variants also produce two matrices, X and Y, for
% use in commands such as PCOLOR(X,Y,Z) or SURF(X,Y,Z,DEL2(Z)).
%
% If not given as input, the underlying matrices X and Y are
% [X,Y]= MESHGRID(V,V)
% where V is a given vector, or V is a vector of length N with
% elements equally spaced from-3 to 3. If no input argument is
% given, the default N is 49.
% CBM, 2-1-92, 8-11-92, 4-30-94.
% Copyright 1984-2006 The MathWorks, Inc.
%$Revision: 5.10.4.3$$Date: 2006/06/27 23:02:56$
if nargin== 0
dx= 1/8;
[x,y]= meshgrid(-3:dx:3);
elseif nargin== 1
if length(arg1)== 1
[x,y]= meshgrid(linspace(-3,3,arg1));
else
[x,y]= meshgrid(arg1,arg1);
end
else
x= arg1; y= arg2;
end
z= 3*(1-x).^2.*exp(-(x.^2)-(y+1).^2)...
- 10*(x/5- x.^3- y.^5).*exp(-x.^2-y.^2)...
- 1/3*exp(-(x+1).^2- y.^2);
if nargout> 1
xz= x;
elseif nargout== 1
xz= z;
else
% Self demonstration
disp('')
disp('z= 3*(1-x).^2.*exp(-(x.^2)-(y+1).^2)...')
disp('- 10*(x/5- x.^3- y.^5).*exp(-x.^2-y.^2)...')
disp('- 1/3*exp(-(x+1).^2- y.^2)')
disp('')
surf(x,y,z)
axis('tight')
xlabel('x'), ylabel('y'), title('Peaks')
end
peaks是Matlab内置的,常用于做演示使用的函数,特别是绘制三维图形的时候
peaks函数根据输入参数不同,返回一个山峰的三维坐标数据
因为突然要我们找一个合适的三维数据还真有些不太方便,而此时通过这个peaks数据我们可以演示一些三维的绘图或处理,比如等高线、网格图、曲面图等
车用功放指示灯PEAK是什么意思啊
峰值指示灯。当音量大到一定程度,这个指示灯才会点亮,如果峰值指示灯长时间持续点亮,不光此时音质不好,内部功率放大电路还是满负荷工作状态。满意我的回答请及时采纳!
PEAK是什么意思
匹克,由英文“PEAK”音译而来,寓意不竭攀越顶峰的自我应战肉体!匹克三角形图形标志代表着山岳,传送着不竭朝上进步的果断决定信念,意味着匹克不竭攀越顶峰的自我应战和创作发觉未来。以“更快、更高、更强”的奥林匹克肉体,塑造出体育运动品牌高贵的抽象。
感谢您对匹克的支持!
peak是什么意思啊
peak的意思如下:
1、巅峰,顶点;山顶;有尖峰的山;尖端,尖顶;帽檐,帽舌;极值,峰值;(艏或艉的)尖舱;斜桁外端,(帆的)后上角。
2、达到高峰,达到最大值;消瘦,衰弱,精神萎靡。
3、巅峰状态的,最高的;高峰时期的。
4、(Peak)(英)皮克(人名)。
例句
1、Atitspeak,DodgeCitywasthebiggestcowtownin theWest.
道奇市在巅峰时期是西部最大的牛镇。
2、YoucanpayatolltodriveonPike'sPeakHighwayorrelaxandtake thePike'sPeakCogRailway.
你可以付通行费开车上派克斯峰公路,或者放松一下,乘坐派克斯峰齿轨式火车。
3、Trafficcongestionisreallybadatpeakperiods.
交通拥挤状况在高峰时段真是糟糕透了。
数字万用表PEAK什么意思
peak的英文是山峰的意思,当然在这里指的是峰值,比如峰峰值电压VPP的全称就是Voltage-Peak-Peak,crest也是同样峰值的意思,有些万用表的峰值就是用的crest而不是peak
好了,文章到此结束,希望可以帮助到大家。