How to plot a function
이전 댓글 표시
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
채택된 답변
추가 답변 (1개)
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')
카테고리
도움말 센터 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

