Symbolic differentiation using Jasymca
Source code name: "symb_diff1.m"
Programming language: Octave
Topic: Symbolic/Differentiation
DMelt Version 1. Last modified: 05/09/2015. License: Free
https://datamelt.org/code/cache/symb_diff1_7289.m
To run this script using the DataMelt IDE, copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.


# This uses Octave language

syms a,x
y=diff(a*x^3,x); printf('%f',y)