summaryrefslogtreecommitdiff
path: root/1223/CH9/EX9.9/Ex9_9.sce
blob: 892fb256c05e72f53c6d0a1f18b3c6374d95717f (plain)
1
2
3
4
5
6
7
8
9
clear;
clc;
//Example 9.9
//Vo=(-1/R1*C2)*integrate((-1)dt) 
x=integrate('(-1)','t',0,1)
Vo=10;
//let y=R1*C2
y=-x/Vo;
printf('\nR1C2=%.2f ms\n',y)