How to plot function(s) with smooth curves

조회 수: 8 (최근 30일)
Timothy Cha
Timothy Cha 2019년 9월 9일
답변: Star Strider 2019년 9월 9일
I am trying to plot three different equations onto one figure, and each equation with a smooth curve. Because I need to set the values of the independent variable, I cannot figure out how to make them into smooth curves; instead the graphs are segmented, from point to point. Any tips are greatly appreciated!
Here is my code:
N = 0:0.2:1
f = @(N) N.*(1-N);
g = @(N) N.^(2/3)-N
h = @(N) -N.*log(N)
plot(N, f(N), N, g(N), N, h(N))
Which gives me this figure:
Screen Shot 2019-09-08 at 11.07.07 PM.jpg
While this is the figure I want:
Screen Shot 2019-09-08 at 11.07.26 PM.jpg

채택된 답변

Star Strider
Star Strider 2019년 9월 9일
N = linspace(0, 1);
This will produce a vector of 100 points between 0 and 1. See the documentation on linspace for details and other options.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by