필터 지우기
필터 지우기

plotting with variable parameter

조회 수: 17 (최근 30일)
Mesbahose Salekeen
Mesbahose Salekeen 2020년 6월 23일
편집: Star Strider 2020년 6월 23일
let's say i want to plot a graph f(x)=x^3+b*x^2+1
but i want to visualize the graph as b changes lets say from -3 to 3 with .5 step. How can i do it?

채택된 답변

Star Strider
Star Strider 2020년 6월 23일
편집: Star Strider 2020년 6월 23일
Try this:
f = @(b,x) x.^3+b.*x.^2+1;
bv = -3:0.5:3; % Define ‘b’
x = linspace(-1, 1, 25); % Define ‘x’
[B,X] = ndgrid(bv,x);
F = f(B,X);
figure
plot(x, F)
lgdb = compose('%4.1f', bv);
lgd = legend(lgdb, 'Location','best')
title(lgd, 'b')
EDIT —
Added plot figure —
.

추가 답변 (1개)

Reeshabh Kumar Ranjan
Reeshabh Kumar Ranjan 2020년 6월 23일
편집: Reeshabh Kumar Ranjan 2020년 6월 23일

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by