Borrar filtros
Borrar filtros

calculate the derivative of the function log(sin(2x)), simplify the result

3 visualizaciones (últimos 30 días)
Yaser Arafat
Yaser Arafat el 13 de Dic. de 2016
Comentada: Jan el 13 de Dic. de 2016
pretty(simplify(diff('log(sin(2*x))','x'))) Error using diff Difference order N must be a positive integer scalar.
  1 comentario
Jan
Jan el 13 de Dic. de 2016
@Yaser: In your example the input for diff() is a string, which is treated like a numerical vector containing ASCII codes. Most likely you want a symbolic expression, so see KSSV's answer.

Iniciar sesión para comentar.

Respuestas (1)

KSSV
KSSV el 13 de Dic. de 2016
syms x
f = log(sin(2*x));
pretty(simplify(diff(f)))

Community Treasure Hunt

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

Start Hunting!

Translated by