If I had the derivative of an equation and had data points how would I plot them

조회 수: 1 (최근 30일)
My derivative is 1 - (sin(x))/(2√(x)) - (√x)(cos(x)) and x = [1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0 5.5 6.0] how would I plot them?

채택된 답변

Torsten
Torsten 2022년 10월 2일
d = @(x)1 - sin(x)./(2*sqrt(x)) - sqrt(x).*cos(x);
x = [1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0 5.5 6.0];
plot(x,d(x))
  댓글 수: 2
Batuhan Yildiz
Batuhan Yildiz 2022년 10월 2일
편집: Image Analyst 2022년 10월 2일
Two Questions:
  1. why add the @(x)?
  2. would this code also work?
x=[1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0 5.5 6.0] ;
y=x-sqrt(x).*sin(x);
dy=diff(y)./diff(x);
plot(x(2:end),dy);
Torsten
Torsten 2022년 10월 2일
편집: Torsten 2022년 10월 2일
why add the @(x)?
I defined the derivative d as a function. Alternatively, you can of course use
x = [1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0 5.5 6.0];
d = 1 - sin(x)./(2*sqrt(x)) - sqrt(x).*cos(x);
plot(x,d)
would this code also work?
If you are too lazy to compute the exact derivative, you can use the approximation
dy = diff(y)./diff(x)
formed by finite difference quotients.
But note that d gives you an approximate derivative in points (x(1:end-1)+x(2:end))/2, not in x(2:end). Thus for the plot you should use
plot((x(1:end-1)+x(2:end))/2,dy)
instead of
plot(x(2:end),dy)
Alternatively, you can compute the derivative symbolically:
syms x
y = x-sqrt(x).*sin(x);
dy = diff(y,x)
dy = 

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2022년 10월 2일
if you have numeric derivative and you want to plot the original curve (to within a constant shift) then use cumtrapz() and plot that.

카테고리

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

제품


릴리스

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by