summaryrefslogtreecommitdiff
path: root/1460/CH2/EX2.1/2_1.sce
blob: e282ab8f53351a820d3b941d6f7ac9f58cee090f (plain)
1
2
3
4
5
6
7
8
9
10
11
clc
//initialization of variables
k=20 //lb/in
x=3 //in
//calculations
function [y]=fun(x)
    y=k*x
endfunction
w=intg(0,3,fun)
//results
printf("Work done = %d in-lb",w)