blob: a032bd1f7271a409fc266d0873c3d0a45689eeff (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 1.3 (a)
//MAXIMA SCILAB TOOLBOX REQUIRED FOR THIS PROGRAM
//Calculate Following Summations
clear;
clc ;
close ;
syms n;
X= symsum (sin(2*n),n ,2, 2);
//Display the result in command window
disp (X,"The Value of summation comes out to be:");
|