Zeros of Bessel function, Legendre function, Trig functions

버전 2.0.0.0 (1.51 KB) 작성자: Lateef Adewale Kareem
%% This function computes atmost N zeros (z) between xmin and xmax
다운로드 수: 65
업데이트 날짜: 2022/6/6

라이선스 보기

%% This function computes atmost N zeros (z) between xmin and xmax
% fun is the handle to the function whose zeros we want to compute
% xmin is the start of the search region
% xmax is the end of the search region
% N is the maximum number of the zeros we sort
% Example 1: z = Nzeros(@(x)besselj(0,x), 0, 20, 7)
% Example 2: z = Nzeros(@(x)sin(x*pi), 0, 20, 7)
% Example 3: z = Nzeros(@(x)cos(x*pi), 0, 20, 7)
% Example 4: z = Nzeros(@(x)besselj(0,x) - 2*besselj(1,x), 0, 20, 7)
% Example 5: z = Nzeros(@(x)3*sin(2*x) - 2*cos(3*x), 0, 20, 7)

인용 양식

Lateef Adewale Kareem (2024). Zeros of Bessel function, Legendre function, Trig functions (https://www.mathworks.com/matlabcentral/fileexchange/64844-zeros-of-bessel-function-legendre-function-trig-functions), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2012b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Bessel functions에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
2.0.0.0

The overall method was changed and improved for better performance.

1.3.0.0

added more tags

1.2.0.0

modified computation of the values for plot. using arrayfun

1.1.0.0

improve search for some complex functions.

Added examples to the description.

1.0.0.0