Borrar filtros
Borrar filtros

plotting derivative function against Y value

1 visualización (últimos 30 días)
Gavin Seddon
Gavin Seddon el 2 de Ag. de 2018
Respondida: KSSV el 2 de Ag. de 2018
hello I have a distance/time graph and I want to plot the velocity against distance. I have created the velocity function v:eval v
v =
(36003*cos((33*x)/20 - 383/200))/1000 + (234601*cos((619*x)/500 + 659/500))/6250 + (8542857*cos((3247*x)/1000 + 9293/10000))/1000000 will someone please instruct me how to plot this between a distance of 0 and 500000? GS

Respuesta aceptada

KSSV
KSSV el 2 de Ag. de 2018
v = @(x) (36003*cos((33*x)/20 - 383/200))/1000 + (234601*cos((619*x)/500 + 659/500))/6250 +.......
(8542857*cos((3247*x)/1000 + 9293/10000))/1000000 ;
x = 0:500000 ;
plot(x,v(x)) ;

Más respuestas (0)

Categorías

Más información sobre Discrete Data Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by