MatLab Tips and Tricks

  • integration:
    syms x;
    int(x^2 * exp(-x))
    
    syms x;
    int(x^2 * exp(-x), 0, 1)
    

Back to Homepage