日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

零階一類貝塞爾函數曲線及其包絡線 matlab源程序

系統 3103 0

廢話不多說,請看源程序:

    
      clear ,clc;
format long
x=(0:0.01:100)';
y_0=besselj(0,x);
% y_1=besselj(1,x); %一階,這里只畫了0階
% y_2=besselj(2,x); %二階


plot(x,y_0);grid on;
axis([0,100,-1,1]);
title('0階貝塞爾函數曲線圖');
xlabel('Variable X');
ylabel('Variable Y');

%畫包絡線
hold on;
[up,down] = envelope(x,y_0,'spline');
plot(x, up, 'r');
plot(x, down, 'r');




    
  


其中的envelope是個單獨的.m文件,是個函數,用來畫包絡線。說白了就是求拐點然后插值:

    
      function [up,down] = envelope(x,y,interpMethod)

%ENVELOPE gets the data of upper and down envelope of the known input (x,y).
%
% Input parameters:
% x the abscissa of the given data
% y the ordinate of the given data
% interpMethod the interpolation method
%
% Output parameters:
% up the upper envelope, which has the same length as x.
% down the down envelope, which has the same length as x.
%
% See also DIFF INTERP1

% Designed by: Lei Wang, <WangLeiBox@hotmail.com>, 11-Mar-2003.
% Last Revision: 21-Mar-2003.
% Dept. Mechanical & Aerospace Engineering, NC State University.
% $Revision: 1.1 $ $Date: 3/21/2003 10:33 AM $

if length(x) ~= length(y)
error('Two input data should have the same length.');
end

if (nargin < 2)|(nargin > 3),
error('Please see help for INPUT DATA.');
elseif (nargin == 2)
interpMethod = 'linear';
end



% Find the extreme maxim values 
% and the corresponding indexes
%----------------------------------------------------
extrMaxValue = y(find(diff(sign(diff(y)))==-2)+1);
extrMaxIndex = find(diff(sign(diff(y)))==-2)+1;



% Find the extreme minim values 
% and the corresponding indexes
%----------------------------------------------------
extrMinValue = y(find(diff(sign(diff(y)))==+2)+1);
extrMinIndex = find(diff(sign(diff(y)))==+2)+1;



up = extrMaxValue;
up_x = x(extrMaxIndex);

down = extrMinValue;
down_x = x(extrMinIndex);



% Interpolation of the upper/down envelope data
%----------------------------------------------------
up = interp1(up_x,up,x,interpMethod); 
down = interp1(down_x,down,x,interpMethod); 
    
  


效果:

零階一類貝塞爾函數曲線及其包絡線 matlab源程序

源程序下載: http://www.pudn.com/downloads495/sourcecode/windows/other/detail2062657.html

csdn上傳資源標簽里竟然沒有Matlab,桑不起啊。。。。

零階一類貝塞爾函數曲線及其包絡線 matlab源程序


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 清远市| 马关县| 克拉玛依市| 上思县| 吉林省| 通河县| 翁源县| 佛坪县| 红河县| 郑州市| 邹城市| 将乐县| 民和| 冕宁县| 花莲县| 双桥区| 顺义区| 墨竹工卡县| 通化市| 高安市| 恩平市| 合川市| 鄢陵县| 岑巩县| 布拖县| 宾川县| 保山市| 龙门县| 台山市| 峡江县| 长乐市| 新野县| 佛学| 牙克石市| 长子县| 南充市| 施秉县| 勃利县| 伊宁市| 灌阳县| 湖北省|