How to plot a function

조회 수: 2 (최근 30일)
Nouha Amine
Nouha Amine 2022년 5월 25일
댓글: Sam Chak 2022년 5월 25일
Hello,
I need to plot a graph with
where x is between and ,
y is here between and ,
Can you help me with it?
Thanks

채택된 답변

Sam Chak
Sam Chak 2022년 5월 25일
You can do something like this:
x = 0.1:0.01:10;
y1 = x.^(-2.9-0.1);
y2 = x.^(-2.9+0.1);
plot(x, y1, x, y2)
ylim([1e-8 1e0])
xlabel('x')
ylabel('y')
  댓글 수: 2
Nouha Amine
Nouha Amine 2022년 5월 25일
When I copied this code,
The figure didn't show up,
What is the problem with that
Sam Chak
Sam Chak 2022년 5월 25일
That's strange... I've tested the code on both MATLAB and Octave. Try adding this:
clear all
close all
x = 0.1:0.01:10;
y1 = x.^(-2.9-0.1);
y2 = x.^(-2.9+0.1);
plot(x, y1, x, y2)
ylim([1e-8 1e0])
xlabel('x')
ylabel('y')
grid on

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Fabio Freschi
Fabio Freschi 2022년 5월 25일
You may use fplot
figure, hold on
fplot(@(x)x.^-3,[1 1e5])
fplot(@(x)x.^-2.8,[1 1e5])
% use bi-logaritmic scale
set(gca,'YScale','log','xScale','log')

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by