summaryrefslogtreecommitdiff
path: root/1553/CH4/EX4.12/4Ex12.sce
blob: 8d5614c381ba7dd4e45cc7f3db7451dc9bc70353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Chapter 4 Ex 12

clc;
clear;
close;

x=poly(0,'x');
for x=0.1:0.1:0.9
    if (x/(1+1-x))==0.5
        mprintf("\n The value of x is %.2f",x);
                break;
            end
end