From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2252/CH6/EX6.1/Ex6_1.jpeg | Bin 0 -> 52033 bytes 2252/CH6/EX6.1/Ex6_1.sce | 14 ++++++++++++++ 2 files changed, 14 insertions(+) create mode 100755 2252/CH6/EX6.1/Ex6_1.jpeg create mode 100755 2252/CH6/EX6.1/Ex6_1.sce (limited to '2252/CH6/EX6.1') diff --git a/2252/CH6/EX6.1/Ex6_1.jpeg b/2252/CH6/EX6.1/Ex6_1.jpeg new file mode 100755 index 000000000..4b24cd48e Binary files /dev/null and b/2252/CH6/EX6.1/Ex6_1.jpeg differ diff --git a/2252/CH6/EX6.1/Ex6_1.sce b/2252/CH6/EX6.1/Ex6_1.sce new file mode 100755 index 000000000..ec52e74ab --- /dev/null +++ b/2252/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,14 @@ + +//plotting graph for i1 +theta=linspace(0,2*%pi,100) +i1=50*sin(theta)+50*sin(theta-%pi/4) +plot(theta,i1) +//plotting graph for i2 +theta=linspace(0,2*%pi,100) +i2=50*cos(theta)+50*cos(theta+%pi/4) +plot(theta,i2,"o") +//plotting graph for i3 +i3=50*cos(theta)-20*sin(theta) +plot(theta,i3,"-*") +xtitle("Graphs of i1(-),i2(oo) and i3(-*)","theta","current") +//round off error while plotting graphs -- cgit