EZIPLOT

버전 1.1.0.1 (6.12 KB) 작성자: Jiro Doke
Interactive EZ Function Plotter
다운로드 수: 2.5K
업데이트 날짜: 2016/9/1

라이선스 보기

The function plots in MATLAB® allows you to easily visualize functions:
This "eziplot" will create an interactive plot where all of the parameters become tunable. Just pass the function as an anonymous function, and it will automatically detect the parameters.

Any of the following function plots are supported: ezcontour, ezcontourf, ezmesh, ezmeshc, ezplot, ezplot3, ezpolar, ezsurf, ezsurfc, fplot

Created in R2008a, but should work in older releases.

Example:
a = 1;
eziplot({@(x) sin(a*x)});

a = 1;
b = 2;
f2 = @(t) a*sin(b*t);
f3 = @(t) b*cos(a*t);
eziplot({f2, f3})

a = 1;
b = 1;
f4 = @(x,y) y./(1 + a*x.^2 + b*y.^2);
eziplot({f4}, 'plotfcn', 'ezmeshc');

인용 양식

Jiro Doke (2024). EZIPLOT (https://www.mathworks.com/matlabcentral/fileexchange/19805-eziplot), MATLAB Central File Exchange. 검색됨 .

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

Community Treasure Hunt

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

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

Updated license

1.1.0.0

Copyright update.

1.0.0.0