Plot Multi Dimensional Functions

버전 1.0.0.0 (3.14 KB) 작성자: Durga Lal Shrestha
Evaluates multi dimensional functions; and visualizes and animates in two dimensions interactively.
다운로드 수: 906
업데이트 날짜: 2010/2/2

라이선스 보기

Usage:

plotfunction(fcn,LB,UB,varargin)

EXAMPLES:
1. plotfunction(@hosaki,[0 0],[5 5]);
% Plot hosaki function in the range of 0 - 5 in both dimension.

2. LB = zeros(1,4);UB= 10*ones(1,4); xypar = [2 3];
plotfunction(@shekel,LB,UB,xypar);
% Plot shekel function in the range of 0 - 10 in second and third dimension while keeping constant value (average of 0 and 10) in other dimensions.

3. baseValue = [3.2 4 4 6.8];
plotfunction(@shekel,LB,UB,xypar,baseValue);
% Plot shekel function keeping constant value of 3.2 in first dimension and 6.8 in last dimension. Here values in second and thirs dimension is overwriten by range of LB and UB as done in example 2.

4. For example you have the following function
f = parameterized_rosenbrock(x,a,b)
x1 = x(1);
x2 = x(2);
f = a * (x2 - x1^2)^b + (1 - x1)^b;

% Use the following to visualise the above function
LB=[-5 -2];UB=[5 8];
a = 100; b = 2; % additional argument to the function
plotfunction(@parameterized_rosenbrock,LB,UB,[],[],a,b)

인용 양식

Durga Lal Shrestha (2024). Plot Multi Dimensional Functions (https://www.mathworks.com/matlabcentral/fileexchange/26566-plot-multi-dimensional-functions), MATLAB Central File Exchange. 검색됨 .

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

Community Treasure Hunt

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

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