blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 6 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2 values | repo_name stringlengths 6 87 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 15 values | visit_date timestamp[us]date 2016-08-04 09:00:04 2023-09-05 17:18:33 | revision_date timestamp[us]date 1998-12-11 00:15:10 2023-09-02 05:42:40 | committer_date timestamp[us]date 2005-04-26 09:58:02 2023-09-02 05:42:40 | github_id int64 436k 586M ⌀ | star_events_count int64 0 12.3k | fork_events_count int64 0 6.3k | gha_license_id stringclasses 7 values | gha_event_created_at timestamp[us]date 2012-11-16 11:45:07 2023-09-14 20:45:37 ⌀ | gha_created_at timestamp[us]date 2010-03-22 23:34:58 2023-01-07 03:47:44 ⌀ | gha_language stringclasses 36 values | src_encoding stringclasses 17 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 1 class | length_bytes int64 5 10.4M | extension stringclasses 15 values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
c1a20b8a63dd491de3f4573701160f42750a138b | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set9/s_Engineering_Physics_K._V._Kumar_3537.zip/Engineering_Physics_K._V._Kumar_3537/CH7/EX7.21/Ex7_21.sce | 0ce0540373259874cad7cca3c57c2711c02d12a8 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 192 | sce | Ex7_21.sce | errcatch(-1,"stop");mode(2);//Example 7_21
;
;
//To calculate the refractive index of core
delta=0.14
n2=1.3
n1=n2/(1-delta)
printf("The refractive index of core is %.2f",n1)
exit();
|
77a29e13479212b518bace808f2f720f4cf0ad1a | 0577305335a94b42b5326da932fa216f0a3be24b | /Assignment 1/LU_decomposition.sce | 8bc34ad8045bd73d61cf2bafcdc2b03f9e9f40aa | [] | no_license | RITIKHARIANI/Scilab-Assignment | 540ff67cce176b49c556e7d21cebbb03a8653e0f | b979fb6771f0e0855fa632a216a54aca892114ea | refs/heads/master | 2020-12-18T20:37:55.331452 | 2020-06-03T10:49:33 | 2020-06-03T10:49:33 | 235,514,808 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,128 | sce | LU_decomposition.sce | //LU decomposition
//To solve system of linear equations
format('v',5);
//Input of 3x3 matrix
disp('Please enter the matrix A');
a11=input("Enter a11: ");
a12=input("Enter a12: ");
a13=input("Enter a13: ");
a21=input("Enter a21: ");
a22=input("Enter a22: ");
a23=input("Enter a23: ");
a31=input("Enter a31: ");
a32=input("Enter a32: ");
a33=input("Enter a33: ");
A=[a11,a12,a13;a21,a22,a23;a31,a32,a33];
disp('Please enter the matrix B');
b1=input("Enter b1: ");
b2=input("Enter b2: ");
b3=input("Enter b3: ");
b=[b1;b2;b3]; //Constant matrix
for l=1:3
L(l,l)=1;
end
for i=1:3
for j=1:3
s=0;
if j>=i
for k=1:i-1
s=s+L(i,k)*U(k,j);
end
U(i,j)=A(i,j)-s;
else
for k=1:j-1
s=s+L(i,k)*U(k,j);
end
L(i,j)=(A(i,j)-s)/U(j,j);
end
end
end
disp('The Upper triangular matrix is :');
disp(U);
disp('The Lower triangular matrix is :');
disp(L);
disp('Product LU =' );
disp(L*U);
disp('This proves A=LU . Now,');
c=inv(L)*b;
x=inv(U)*c;
disp(x,'Solution to the given equations are :');
|
c4f509f13c7a71894ab8dd2d6ca1adbd263044ea | 449d555969bfd7befe906877abab098c6e63a0e8 | /3041/CH2/EX2.5/Ex2_5.sce | 4cdb072f6f479f048edaf6cac41dc69f6cfb70e0 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 491 | sce | Ex2_5.sce | //Variable declaration
Vgs=12 //gate to source voltage(V)
Vt=4 //threshold voltage(V)
Id=12.8 //drain current(mA)
K=0.0002 //device parameter
Vdd=24 //drain voltage(V)
Vds=8 //drain to source voltage(V)
Vgs=8
//Calculations
Id=K*((Vds-Vt)^2) //drain current at Vds=8V
Rd=(Vdd-Vds)/Id //drain resistance(k ohms)
//Result
printf ("diode resistance is %.f ohms",Rd)
|
014c58e98d0e9e7ecb113d928681846e20c69b43 | ed5e7aeae2745973cd8038caec7b1fce3cab8914 | /analyze/loadData.sce | b037dad17a4a1acc90cc30bd2b1a6ce16a41184b | [] | no_license | cmmurray/soccer | ff246d1a61cb6f6a43e7edd3f7b92802a48cb155 | 0a7b709e244db8d7cc56a5ee1361ecef7ae5da8b | refs/heads/master | 2020-05-09T18:09:04.531264 | 2015-01-05T23:13:52 | 2015-01-05T23:13:52 | 13,311,958 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 670 | sce | loadData.sce | clear;
clc;
stacksize('max');
data = read_csv('../getdata/Data/master.csv');
//split headers and data
headers = data(1,:);
data = data(2:$,:);
hg = round(strtod(data(:,5)));
ag = round(strtod(data(:,6)));
hgh = round(strtod(data(:,8)));
agh = round(strtod(data(:,9)));
tg = hg + ag;
tgh = hgh + agh;
//Fix some things that should be draws but arent (assume score correct)
data(ag > hg,7) = "A";data(agh > hgh,10) = "A";
data(ag < hg,7) = "H";data(agh < hgh,10) = "H";
data(ag == hg,7) = "D";data(agh == hgh,10) = "D";
res = data(:,7);resh = data(:,10);
gmat = zeros(max(hg)+1,max(ag)+1);
for i = 1:size(hg,1)
gmat(hg(i)+1,ag(i)+1) = gmat(hg(i)+1,ag(i)+1)+1;
end
|
2a71d42080782f808c5c4e438a3bbe8c485b5a88 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1754/CH2/EX2.1/Exa2_1.sce | 8fb69a02a5ba24d457d527bb6e3e5cdc76635d8d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 301 | sce | Exa2_1.sce | //Exa 2.1
clc;
clear;
close;
//Given data
deltaIB=50;//in uA
deltaIC=1;//in mA
deltaIC=deltaIC*10^3;//in uA
Beta=deltaIC/deltaIB;//unitless
disp(Beta,"Current Amplification Factor,Beta :");
Alfa=Beta/(1+Beta);//unittless
disp("Current Amplification Factor,Alfa :"+string(Alfa)+" or 20/21"); |
1ab8dd6752e255f982c3fbb3c0df0fa031822c81 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3845/CH5/EX5.1/Ex5_1.sce | 118dad4436b122a82487d6dd541d8a2d3e97072e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 406 | sce | Ex5_1.sce | //Example 5.1
f_k=45;//Friction (N)
m=62;//Mass of skier (kg)
g=9.80;//Acceleration due to gravity (m/s^2)
theta=25;//Inclination of slope (deg)
N=m*g*cosd(theta);//Normal force perpendicular to slope (N)
mu_k=f_k/N;//Coefficient of kinetic friction
printf('Coefficient of kinetic friction = %0.3f',mu_k)
//Openstax - College Physics
//Download for free at http://cnx.org/content/col11406/latest
|
3d571df89f6cda7cf2cc155be28a38a5a7da891a | 449d555969bfd7befe906877abab098c6e63a0e8 | /716/CH2/EX2.5/Solved_Ex2_5.sce | aeab012803e53693c4541cf23da5defab1203efd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 479 | sce | Solved_Ex2_5.sce | //sketch x(-t) and x(2-t)
//for x(t)=t for 0<=t<=3 and x(t)=0 for t>3
clc;
clear;
clf;
t=-5:0.01:5;
x=t.*(t>=0&t<=3)+0.*(t>3);
subplot(131)
plot(t,x);//displays original function x(t)
xtitle('the original signal x(t)=t for 0<=t<=3','time t','signal x(t)');
t=-1*t;
subplot(132)
plot(t,x);//displays x(-t)
xtitle('the signal x(-t)','time t','signal x(-t)');
t=2+t;
subplot(133)
plot(t,x);//displays x(2-t)
xtitle('the signal x(2-t)','time t','signal x(2-t)'); |
e56595fb8737120f72ee1104d79dd711ea55f5cd | 7b040f1a7bbc570e36aab9b2ccf77a9e59d3e5c2 | /2-DOF_manual/2dof/cl3_pi_4.sce | 862b8dcee8b1caa7ac9af46d86f62e6e18058efc | [] | no_license | advait23/sbhs-manual | e2c380051117e3a36398bb5ad046781f7b379cb9 | d65043acd98334c44a0f0dbf480473c4c4451834 | refs/heads/master | 2021-01-16T19:50:40.218314 | 2012-11-16T04:11:12 | 2012-11-16T04:11:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 23,760 | sce | cl3_pi_4.sce | 0.000E+00 0.740E+01 0.390E+02 0.276E+02
0.500E+00 0.740E+01 0.390E+02 0.276E+02
0.100E+01 0.750E+01 0.390E+02 0.275E+02
0.150E+01 0.750E+01 0.390E+02 0.275E+02
0.200E+01 0.750E+01 0.390E+02 0.275E+02
0.250E+01 0.750E+01 0.390E+02 0.275E+02
0.300E+01 0.750E+01 0.390E+02 0.275E+02
0.350E+01 0.750E+01 0.390E+02 0.275E+02
0.400E+01 0.740E+01 0.390E+02 0.276E+02
0.450E+01 0.740E+01 0.390E+02 0.276E+02
0.500E+01 0.740E+01 0.390E+02 0.276E+02
0.550E+01 0.730E+01 0.390E+02 0.277E+02
0.600E+01 0.730E+01 0.390E+02 0.277E+02
0.650E+01 0.710E+01 0.384E+02 0.279E+02
0.700E+01 0.710E+01 0.386E+02 0.279E+02
0.750E+01 0.700E+01 0.386E+02 0.280E+02
0.800E+01 0.700E+01 0.390E+02 0.280E+02
0.850E+01 0.700E+01 0.390E+02 0.280E+02
0.900E+01 0.700E+01 0.390E+02 0.280E+02
0.950E+01 0.690E+01 0.390E+02 0.281E+02
0.100E+02 0.680E+01 0.390E+02 0.282E+02
0.105E+02 0.660E+01 0.383E+02 0.284E+02
0.110E+02 0.640E+01 0.372E+02 0.286E+02
0.115E+02 0.610E+01 0.351E+02 0.289E+02
0.120E+02 0.600E+01 0.333E+02 0.290E+02
0.125E+02 0.570E+01 0.307E+02 0.293E+02
0.130E+02 0.560E+01 0.285E+02 0.294E+02
0.135E+02 0.540E+01 0.260E+02 0.296E+02
0.140E+02 0.520E+01 0.233E+02 0.298E+02
0.145E+02 0.500E+01 0.204E+02 0.300E+02
0.150E+02 0.480E+01 0.174E+02 0.302E+02
0.155E+02 0.450E+01 0.137E+02 0.305E+02
0.160E+02 0.430E+01 0.990E+01 0.307E+02
0.165E+02 0.420E+01 0.668E+01 0.308E+02
0.170E+02 0.390E+01 0.273E+01 0.311E+02
0.175E+02 0.390E+01 0.000E+00 0.311E+02
0.180E+02 0.350E+01 0.000E+00 0.315E+02
0.185E+02 0.340E+01 0.000E+00 0.316E+02
0.190E+02 0.330E+01 0.000E+00 0.317E+02
0.195E+02 0.310E+01 0.000E+00 0.319E+02
0.200E+02 0.310E+01 0.249E+00 0.319E+02
0.205E+02 0.280E+01 0.000E+00 0.322E+02
0.210E+02 0.270E+01 0.000E+00 0.323E+02
0.215E+02 0.270E+01 0.217E+00 0.323E+02
0.220E+02 0.260E+01 0.300E-01 0.324E+02
0.225E+02 0.260E+01 0.904E-01 0.324E+02
0.230E+02 0.250E+01 0.000E+00 0.325E+02
0.235E+02 0.250E+01 0.129E+00 0.325E+02
0.240E+02 0.250E+01 0.433E+00 0.325E+02
0.245E+02 0.240E+01 0.298E+00 0.326E+02
0.250E+02 0.240E+01 0.385E+00 0.326E+02
0.255E+02 0.240E+01 0.646E+00 0.326E+02
0.260E+02 0.240E+01 0.105E+01 0.326E+02
0.265E+02 0.250E+01 0.213E+01 0.325E+02
0.270E+02 0.240E+01 0.262E+01 0.326E+02
0.275E+02 0.240E+01 0.320E+01 0.326E+02
0.280E+02 0.240E+01 0.386E+01 0.326E+02
0.285E+02 0.240E+01 0.457E+01 0.326E+02
0.290E+02 0.250E+01 0.591E+01 0.325E+02
0.295E+02 0.250E+01 0.717E+01 0.325E+02
0.300E+02 0.260E+01 0.895E+01 0.324E+02
0.305E+02 0.260E+01 0.106E+02 0.324E+02
0.310E+02 0.260E+01 0.121E+02 0.324E+02
0.315E+02 0.270E+01 0.140E+02 0.323E+02
0.320E+02 0.270E+01 0.158E+02 0.323E+02
0.325E+02 0.270E+01 0.175E+02 0.323E+02
0.330E+02 0.270E+01 0.190E+02 0.323E+02
0.335E+02 0.280E+01 0.210E+02 0.322E+02
0.340E+02 0.300E+01 0.240E+02 0.320E+02
0.345E+02 0.300E+01 0.265E+02 0.320E+02
0.350E+02 0.300E+01 0.289E+02 0.320E+02
0.355E+02 0.300E+01 0.309E+02 0.320E+02
0.360E+02 0.300E+01 0.328E+02 0.320E+02
0.365E+02 0.300E+01 0.346E+02 0.320E+02
0.370E+02 0.300E+01 0.362E+02 0.320E+02
0.375E+02 0.300E+01 0.377E+02 0.320E+02
0.380E+02 0.300E+01 0.390E+02 0.320E+02
0.385E+02 0.280E+01 0.390E+02 0.322E+02
0.390E+02 0.280E+01 0.390E+02 0.322E+02
0.395E+02 0.270E+01 0.386E+02 0.323E+02
0.400E+02 0.270E+01 0.386E+02 0.323E+02
0.405E+02 0.260E+01 0.382E+02 0.324E+02
0.410E+02 0.260E+01 0.381E+02 0.324E+02
0.415E+02 0.240E+01 0.370E+02 0.326E+02
0.420E+02 0.230E+01 0.358E+02 0.327E+02
0.425E+02 0.230E+01 0.350E+02 0.327E+02
0.430E+02 0.210E+01 0.335E+02 0.329E+02
0.435E+02 0.200E+01 0.318E+02 0.330E+02
0.440E+02 0.190E+01 0.301E+02 0.331E+02
0.445E+02 0.180E+01 0.283E+02 0.332E+02
0.450E+02 0.160E+01 0.258E+02 0.334E+02
0.455E+02 0.180E+01 0.252E+02 0.332E+02
0.460E+02 0.130E+01 0.219E+02 0.337E+02
0.465E+02 0.120E+01 0.188E+02 0.338E+02
0.470E+02 0.900E+00 0.148E+02 0.341E+02
0.475E+02 0.600E+00 0.987E+01 0.344E+02
0.480E+02 0.400E+00 0.489E+01 0.346E+02
0.485E+02 0.300E+00 0.379E+00 0.347E+02
0.490E+02 0.000E+00 0.000E+00 0.350E+02
0.495E+02 -0.100E+00 0.000E+00 0.351E+02
0.500E+02 -0.200E+00 0.000E+00 0.352E+02
0.505E+02 -0.300E+00 0.000E+00 0.353E+02
0.510E+02 -0.300E+00 0.000E+00 0.353E+02
0.515E+02 -0.400E+00 0.000E+00 0.354E+02
0.520E+02 -0.500E+00 0.000E+00 0.355E+02
0.525E+02 -0.500E+00 0.000E+00 0.355E+02
0.530E+02 -0.700E+00 0.000E+00 0.357E+02
0.535E+02 -0.700E+00 0.000E+00 0.357E+02
0.540E+02 -0.800E+00 0.000E+00 0.358E+02
0.545E+02 -0.700E+00 0.512E+00 0.357E+02
0.550E+02 -0.700E+00 0.863E+00 0.357E+02
0.555E+02 -0.700E+00 0.109E+01 0.357E+02
0.560E+02 -0.700E+00 0.121E+01 0.357E+02
0.565E+02 -0.500E+00 0.240E+01 0.355E+02
0.570E+02 -0.500E+00 0.331E+01 0.355E+02
0.575E+02 -0.400E+00 0.456E+01 0.354E+02
0.580E+02 -0.300E+00 0.611E+01 0.353E+02
0.585E+02 -0.300E+00 0.731E+01 0.353E+02
0.590E+02 -0.200E+00 0.881E+01 0.352E+02
0.595E+02 -0.200E+00 0.100E+02 0.352E+02
0.600E+02 0.000E+00 0.121E+02 0.350E+02
0.605E+02 0.000E+00 0.137E+02 0.350E+02
0.610E+02 0.200E+00 0.162E+02 0.348E+02
0.615E+02 0.200E+00 0.182E+02 0.348E+02
0.620E+02 0.400E+00 0.209E+02 0.346E+02
0.625E+02 0.400E+00 0.231E+02 0.346E+02
0.630E+02 0.400E+00 0.249E+02 0.346E+02
0.635E+02 0.500E+00 0.269E+02 0.345E+02
0.640E+02 0.600E+00 0.291E+02 0.344E+02
0.645E+02 0.600E+00 0.309E+02 0.344E+02
0.650E+02 0.700E+00 0.330E+02 0.343E+02
0.655E+02 0.700E+00 0.347E+02 0.343E+02
0.660E+02 0.700E+00 0.361E+02 0.343E+02
0.665E+02 0.700E+00 0.373E+02 0.343E+02
0.670E+02 0.700E+00 0.383E+02 0.343E+02
0.675E+02 0.700E+00 0.390E+02 0.343E+02
0.680E+02 0.700E+00 0.390E+02 0.343E+02
0.685E+02 0.900E+00 0.390E+02 0.341E+02
0.690E+02 0.600E+00 0.373E+02 0.344E+02
0.695E+02 0.900E+00 0.378E+02 0.341E+02
0.700E+02 0.700E+00 0.371E+02 0.343E+02
0.705E+02 0.700E+00 0.366E+02 0.343E+02
0.710E+02 0.500E+00 0.351E+02 0.345E+02
0.715E+02 0.400E+00 0.333E+02 0.346E+02
0.720E+02 0.200E+00 0.308E+02 0.348E+02
0.725E+02 0.200E+00 0.289E+02 0.348E+02
0.730E+02 -0.100E+00 0.256E+02 0.351E+02
0.735E+02 -0.200E+00 0.224E+02 0.352E+02
0.740E+02 -0.300E+00 0.193E+02 0.353E+02
0.745E+02 -0.500E+00 0.156E+02 0.355E+02
0.750E+02 -0.500E+00 0.127E+02 0.355E+02
0.755E+02 -0.800E+00 0.858E+01 0.358E+02
0.760E+02 -0.100E+01 0.409E+01 0.360E+02
0.765E+02 -0.110E+01 0.000E+00 0.361E+02
0.770E+02 -0.120E+01 0.000E+00 0.362E+02
0.775E+02 -0.140E+01 0.000E+00 0.364E+02
0.780E+02 -0.150E+01 0.000E+00 0.365E+02
0.785E+02 -0.160E+01 0.000E+00 0.366E+02
0.790E+02 -0.170E+01 0.000E+00 0.367E+02
0.795E+02 -0.170E+01 0.000E+00 0.367E+02
0.800E+02 -0.180E+01 0.000E+00 0.368E+02
0.805E+02 -0.180E+01 0.000E+00 0.368E+02
0.810E+02 -0.180E+01 0.000E+00 0.368E+02
0.815E+02 -0.180E+01 0.000E+00 0.368E+02
0.820E+02 -0.180E+01 0.000E+00 0.368E+02
0.825E+02 -0.170E+01 0.432E+00 0.367E+02
0.830E+02 -0.180E+01 0.617E-01 0.368E+02
0.835E+02 -0.170E+01 0.200E+00 0.367E+02
0.840E+02 -0.160E+01 0.749E+00 0.366E+02
0.845E+02 -0.160E+01 0.106E+01 0.366E+02
0.850E+02 -0.160E+01 0.117E+01 0.366E+02
0.855E+02 -0.150E+01 0.171E+01 0.365E+02
0.860E+02 -0.140E+01 0.260E+01 0.364E+02
0.865E+02 -0.140E+01 0.319E+01 0.364E+02
0.870E+02 -0.120E+01 0.470E+01 0.362E+02
0.875E+02 -0.100E+01 0.695E+01 0.360E+02
0.880E+02 -0.100E+01 0.867E+01 0.360E+02
0.885E+02 -0.900E+00 0.105E+02 0.359E+02
0.890E+02 -0.800E+00 0.125E+02 0.358E+02
0.895E+02 -0.800E+00 0.140E+02 0.358E+02
0.900E+02 -0.700E+00 0.157E+02 0.357E+02
0.905E+02 -0.500E+00 0.182E+02 0.355E+02
0.910E+02 -0.400E+00 0.207E+02 0.354E+02
0.915E+02 -0.300E+00 0.232E+02 0.353E+02
0.920E+02 -0.300E+00 0.252E+02 0.353E+02
0.925E+02 0.000E+00 0.284E+02 0.350E+02
0.930E+02 -0.100E+00 0.305E+02 0.351E+02
0.935E+02 0.200E+00 0.338E+02 0.348E+02
0.940E+02 0.200E+00 0.365E+02 0.348E+02
0.945E+02 0.400E+00 0.390E+02 0.346E+02
0.950E+02 0.400E+00 0.390E+02 0.346E+02
0.955E+02 0.300E+00 0.385E+02 0.347E+02
0.960E+02 0.400E+00 0.386E+02 0.346E+02
0.965E+02 0.300E+00 0.382E+02 0.347E+02
0.970E+02 0.300E+00 0.379E+02 0.347E+02
0.975E+02 0.300E+00 0.377E+02 0.347E+02
0.980E+02 0.200E+00 0.370E+02 0.348E+02
0.985E+02 0.200E+00 0.364E+02 0.348E+02
0.990E+02 0.000E+00 0.348E+02 0.350E+02
0.995E+02 0.000E+00 0.336E+02 0.350E+02
0.100E+03 0.490E+01 0.390E+02 0.351E+02
0.100E+03 0.480E+01 0.390E+02 0.352E+02
0.101E+03 0.470E+01 0.388E+02 0.353E+02
0.102E+03 0.460E+01 0.385E+02 0.354E+02
0.102E+03 0.450E+01 0.380E+02 0.355E+02
0.102E+03 0.420E+01 0.362E+02 0.358E+02
0.103E+03 0.410E+01 0.346E+02 0.359E+02
0.104E+03 0.410E+01 0.336E+02 0.359E+02
0.104E+03 0.390E+01 0.320E+02 0.361E+02
0.104E+03 0.360E+01 0.293E+02 0.364E+02
0.105E+03 0.350E+01 0.269E+02 0.365E+02
0.106E+03 0.330E+01 0.241E+02 0.367E+02
0.106E+03 0.340E+01 0.228E+02 0.366E+02
0.106E+03 0.320E+01 0.208E+02 0.368E+02
0.107E+03 0.280E+01 0.172E+02 0.372E+02
0.108E+03 0.270E+01 0.140E+02 0.373E+02
0.108E+03 0.250E+01 0.105E+02 0.375E+02
0.108E+03 0.240E+01 0.730E+01 0.376E+02
0.109E+03 0.230E+01 0.441E+01 0.377E+02
0.110E+03 0.200E+01 0.574E+00 0.380E+02
0.110E+03 0.190E+01 0.000E+00 0.381E+02
0.110E+03 0.180E+01 0.000E+00 0.382E+02
0.111E+03 0.170E+01 0.000E+00 0.383E+02
0.112E+03 0.160E+01 0.000E+00 0.384E+02
0.112E+03 0.160E+01 0.129E+00 0.384E+02
0.112E+03 0.140E+01 0.000E+00 0.386E+02
0.113E+03 0.160E+01 0.116E+01 0.384E+02
0.114E+03 0.160E+01 0.222E+01 0.384E+02
0.114E+03 0.160E+01 0.318E+01 0.384E+02
0.114E+03 0.160E+01 0.408E+01 0.384E+02
0.115E+03 0.160E+01 0.492E+01 0.384E+02
0.116E+03 0.170E+01 0.629E+01 0.383E+02
0.116E+03 0.170E+01 0.752E+01 0.383E+02
0.116E+03 0.180E+01 0.920E+01 0.382E+02
0.117E+03 0.180E+01 0.107E+02 0.382E+02
0.118E+03 0.190E+01 0.126E+02 0.381E+02
0.118E+03 0.210E+01 0.154E+02 0.379E+02
0.118E+03 0.210E+01 0.178E+02 0.379E+02
0.119E+03 0.210E+01 0.199E+02 0.379E+02
0.120E+03 0.230E+01 0.229E+02 0.377E+02
0.120E+03 0.240E+01 0.260E+02 0.376E+02
0.120E+03 0.240E+01 0.287E+02 0.376E+02
0.121E+03 0.260E+01 0.321E+02 0.374E+02
0.122E+03 0.260E+01 0.351E+02 0.374E+02
0.122E+03 0.270E+01 0.382E+02 0.373E+02
0.122E+03 0.280E+01 0.390E+02 0.372E+02
0.123E+03 0.280E+01 0.390E+02 0.372E+02
0.124E+03 0.280E+01 0.390E+02 0.372E+02
0.124E+03 0.280E+01 0.390E+02 0.372E+02
0.124E+03 0.280E+01 0.390E+02 0.372E+02
0.125E+03 0.280E+01 0.390E+02 0.372E+02
0.126E+03 0.280E+01 0.390E+02 0.372E+02
0.126E+03 0.270E+01 0.386E+02 0.373E+02
0.126E+03 0.260E+01 0.380E+02 0.374E+02
0.127E+03 0.260E+01 0.377E+02 0.374E+02
0.128E+03 0.260E+01 0.377E+02 0.374E+02
0.128E+03 0.240E+01 0.367E+02 0.376E+02
0.128E+03 0.240E+01 0.361E+02 0.376E+02
0.129E+03 0.230E+01 0.353E+02 0.377E+02
0.130E+03 0.230E+01 0.348E+02 0.377E+02
0.130E+03 0.210E+01 0.335E+02 0.379E+02
0.130E+03 0.190E+01 0.314E+02 0.381E+02
0.131E+03 0.190E+01 0.299E+02 0.381E+02
0.132E+03 0.170E+01 0.277E+02 0.383E+02
0.132E+03 0.140E+01 0.244E+02 0.386E+02
0.132E+03 0.120E+01 0.207E+02 0.388E+02
0.133E+03 0.120E+01 0.179E+02 0.388E+02
0.134E+03 0.900E+00 0.140E+02 0.391E+02
0.134E+03 0.700E+00 0.988E+01 0.393E+02
0.134E+03 0.600E+00 0.605E+01 0.394E+02
0.135E+03 0.500E+00 0.248E+01 0.395E+02
0.136E+03 0.400E+00 0.000E+00 0.396E+02
0.136E+03 0.400E+00 0.000E+00 0.396E+02
0.136E+03 0.200E+00 0.000E+00 0.398E+02
0.137E+03 0.000E+00 0.000E+00 0.400E+02
0.138E+03 0.000E+00 0.000E+00 0.400E+02
0.138E+03 -0.100E+00 0.000E+00 0.401E+02
0.138E+03 -0.100E+00 0.000E+00 0.401E+02
0.139E+03 0.000E+00 0.569E+00 0.400E+02
0.140E+03 0.000E+00 0.102E+01 0.400E+02
0.140E+03 0.000E+00 0.138E+01 0.400E+02
0.140E+03 0.000E+00 0.166E+01 0.400E+02
0.141E+03 0.200E+00 0.304E+01 0.398E+02
0.142E+03 0.300E+00 0.473E+01 0.397E+02
0.142E+03 0.300E+00 0.610E+01 0.397E+02
0.142E+03 0.400E+00 0.778E+01 0.396E+02
0.143E+03 0.500E+00 0.973E+01 0.395E+02
0.144E+03 0.600E+00 0.119E+02 0.394E+02
0.144E+03 0.700E+00 0.142E+02 0.393E+02
0.144E+03 0.900E+00 0.173E+02 0.391E+02
0.145E+03 0.100E+01 0.204E+02 0.390E+02
0.146E+03 0.100E+01 0.229E+02 0.390E+02
0.146E+03 0.120E+01 0.262E+02 0.388E+02
0.146E+03 0.130E+01 0.294E+02 0.387E+02
0.147E+03 0.130E+01 0.321E+02 0.387E+02
0.148E+03 0.140E+01 0.349E+02 0.386E+02
0.148E+03 0.160E+01 0.384E+02 0.384E+02
0.148E+03 0.170E+01 0.390E+02 0.383E+02
0.149E+03 0.180E+01 0.390E+02 0.382E+02
0.150E+03 0.180E+01 0.390E+02 0.382E+02
0.150E+03 0.190E+01 0.390E+02 0.381E+02
0.150E+03 0.190E+01 0.390E+02 0.381E+02
0.151E+03 0.190E+01 0.390E+02 0.381E+02
0.152E+03 0.190E+01 0.390E+02 0.381E+02
0.152E+03 0.190E+01 0.390E+02 0.381E+02
0.152E+03 0.240E+01 0.390E+02 0.376E+02
0.153E+03 0.200E+01 0.369E+02 0.380E+02
0.154E+03 0.200E+01 0.354E+02 0.380E+02
0.154E+03 0.190E+01 0.337E+02 0.381E+02
0.154E+03 0.180E+01 0.320E+02 0.382E+02
0.155E+03 0.170E+01 0.302E+02 0.383E+02
0.156E+03 0.140E+01 0.272E+02 0.386E+02
0.156E+03 0.120E+01 0.238E+02 0.388E+02
0.156E+03 0.120E+01 0.212E+02 0.388E+02
0.157E+03 0.110E+01 0.186E+02 0.389E+02
0.158E+03 0.700E+00 0.143E+02 0.393E+02
0.158E+03 0.600E+00 0.104E+02 0.394E+02
0.158E+03 0.600E+00 0.736E+01 0.394E+02
0.159E+03 0.400E+00 0.383E+01 0.396E+02
0.160E+03 0.400E+00 0.106E+01 0.396E+02
0.160E+03 0.300E+00 0.000E+00 0.397E+02
0.160E+03 0.200E+00 0.000E+00 0.398E+02
0.161E+03 0.000E+00 0.000E+00 0.400E+02
0.162E+03 0.000E+00 0.000E+00 0.400E+02
0.162E+03 0.000E+00 0.000E+00 0.400E+02
0.162E+03 -0.100E+00 0.000E+00 0.401E+02
0.163E+03 -0.100E+00 0.000E+00 0.401E+02
0.164E+03 0.000E+00 0.569E+00 0.400E+02
0.164E+03 0.000E+00 0.102E+01 0.400E+02
0.164E+03 0.000E+00 0.138E+01 0.400E+02
0.165E+03 0.300E+00 0.339E+01 0.397E+02
0.166E+03 0.300E+00 0.502E+01 0.397E+02
0.166E+03 0.400E+00 0.691E+01 0.396E+02
0.166E+03 0.400E+00 0.845E+01 0.396E+02
0.167E+03 0.500E+00 0.103E+02 0.395E+02
0.168E+03 0.700E+00 0.129E+02 0.393E+02
0.168E+03 0.700E+00 0.151E+02 0.393E+02
0.168E+03 0.900E+00 0.180E+02 0.391E+02
0.169E+03 0.100E+01 0.210E+02 0.390E+02
0.170E+03 0.110E+01 0.240E+02 0.389E+02
0.170E+03 0.130E+01 0.276E+02 0.387E+02
0.170E+03 0.130E+01 0.306E+02 0.387E+02
0.171E+03 0.140E+01 0.337E+02 0.386E+02
0.172E+03 0.160E+01 0.374E+02 0.384E+02
0.172E+03 0.170E+01 0.390E+02 0.383E+02
0.172E+03 0.170E+01 0.390E+02 0.383E+02
0.173E+03 0.180E+01 0.390E+02 0.382E+02
0.174E+03 0.180E+01 0.390E+02 0.382E+02
0.174E+03 0.180E+01 0.390E+02 0.382E+02
0.174E+03 0.180E+01 0.390E+02 0.382E+02
0.175E+03 0.180E+01 0.390E+02 0.382E+02
0.176E+03 0.180E+01 0.390E+02 0.382E+02
0.176E+03 0.170E+01 0.386E+02 0.383E+02
0.176E+03 0.170E+01 0.384E+02 0.383E+02
0.177E+03 0.170E+01 0.383E+02 0.383E+02
0.178E+03 0.190E+01 0.390E+02 0.381E+02
0.178E+03 0.180E+01 0.390E+02 0.382E+02
0.178E+03 0.170E+01 0.386E+02 0.383E+02
0.179E+03 0.160E+01 0.378E+02 0.384E+02
0.180E+03 0.130E+01 0.356E+02 0.387E+02
0.180E+03 0.120E+01 0.333E+02 0.388E+02
0.180E+03 0.110E+01 0.311E+02 0.389E+02
0.181E+03 0.100E+01 0.288E+02 0.390E+02
0.182E+03 0.600E+00 0.247E+02 0.394E+02
0.182E+03 0.600E+00 0.216E+02 0.394E+02
0.182E+03 0.400E+00 0.180E+02 0.396E+02
0.183E+03 0.200E+00 0.140E+02 0.398E+02
0.184E+03 0.200E+00 0.108E+02 0.398E+02
0.184E+03 -0.200E+00 0.602E+01 0.402E+02
0.184E+03 -0.200E+00 0.220E+01 0.402E+02
0.185E+03 -0.300E+00 0.000E+00 0.403E+02
0.186E+03 -0.500E+00 0.000E+00 0.405E+02
0.186E+03 -0.500E+00 0.000E+00 0.405E+02
0.186E+03 -0.700E+00 0.000E+00 0.407E+02
0.187E+03 -0.800E+00 0.000E+00 0.408E+02
0.188E+03 -0.800E+00 0.000E+00 0.408E+02
0.188E+03 -0.900E+00 0.000E+00 0.409E+02
0.188E+03 -0.900E+00 0.000E+00 0.409E+02
0.189E+03 -0.800E+00 0.504E+00 0.408E+02
0.190E+03 -0.800E+00 0.841E+00 0.408E+02
0.190E+03 -0.700E+00 0.162E+01 0.407E+02
0.190E+03 -0.700E+00 0.218E+01 0.407E+02
0.191E+03 -0.500E+00 0.373E+01 0.405E+02
0.192E+03 -0.400E+00 0.549E+01 0.404E+02
0.192E+03 -0.400E+00 0.686E+01 0.404E+02
0.192E+03 -0.200E+00 0.907E+01 0.402E+02
0.193E+03 -0.200E+00 0.108E+02 0.402E+02
0.194E+03 -0.200E+00 0.122E+02 0.402E+02
0.194E+03 0.200E+00 0.155E+02 0.398E+02
0.194E+03 0.300E+00 0.188E+02 0.397E+02
0.195E+03 0.300E+00 0.214E+02 0.397E+02
0.196E+03 0.500E+00 0.247E+02 0.395E+02
0.196E+03 0.500E+00 0.273E+02 0.395E+02
0.196E+03 0.600E+00 0.300E+02 0.394E+02
0.197E+03 0.900E+00 0.340E+02 0.391E+02
0.198E+03 0.900E+00 0.372E+02 0.391E+02
0.198E+03 0.900E+00 0.390E+02 0.391E+02
0.198E+03 0.100E+01 0.390E+02 0.390E+02
0.199E+03 0.110E+01 0.390E+02 0.389E+02
0.200E+03 0.120E+01 0.390E+02 0.388E+02
0.200E+03 0.120E+01 0.390E+02 0.388E+02
0.200E+03 0.120E+01 0.390E+02 0.388E+02
0.201E+03 0.120E+01 0.390E+02 0.388E+02
0.202E+03 0.130E+01 0.390E+02 0.387E+02
0.202E+03 0.140E+01 0.390E+02 0.386E+02
0.202E+03 0.120E+01 0.380E+02 0.388E+02
0.203E+03 0.120E+01 0.372E+02 0.388E+02
0.204E+03 0.110E+01 0.362E+02 0.389E+02
0.204E+03 0.100E+01 0.348E+02 0.390E+02
0.204E+03 0.100E+01 0.339E+02 0.390E+02
0.205E+03 0.900E+00 0.326E+02 0.391E+02
0.206E+03 0.700E+00 0.305E+02 0.393E+02
0.206E+03 0.500E+00 0.277E+02 0.395E+02
0.206E+03 0.400E+00 0.250E+02 0.396E+02
0.207E+03 0.300E+00 0.223E+02 0.397E+02
0.208E+03 0.200E+00 0.196E+02 0.398E+02
0.208E+03 -0.100E+00 0.157E+02 0.401E+02
0.208E+03 -0.300E+00 0.115E+02 0.403E+02
0.209E+03 -0.300E+00 0.812E+01 0.403E+02
0.210E+03 -0.500E+00 0.425E+01 0.405E+02
0.210E+03 -0.500E+00 0.114E+01 0.405E+02
0.210E+03 -0.700E+00 0.000E+00 0.407E+02
0.211E+03 -0.800E+00 0.000E+00 0.408E+02
0.212E+03 -0.900E+00 0.000E+00 0.409E+02
0.212E+03 -0.900E+00 0.000E+00 0.409E+02
0.212E+03 -0.900E+00 0.000E+00 0.409E+02
0.213E+03 -0.500E+00 0.223E+01 0.405E+02
0.214E+03 -0.900E+00 0.166E+01 0.409E+02
0.214E+03 -0.700E+00 0.229E+01 0.407E+02
0.214E+03 -0.800E+00 0.215E+01 0.408E+02
0.215E+03 -0.700E+00 0.256E+01 0.407E+02
0.216E+03 -0.500E+00 0.398E+01 0.405E+02
0.216E+03 -0.500E+00 0.506E+01 0.405E+02
0.216E+03 -0.400E+00 0.646E+01 0.404E+02
0.217E+03 -0.300E+00 0.812E+01 0.403E+02
0.218E+03 -0.200E+00 0.999E+01 0.402E+02
0.218E+03 0.000E+00 0.126E+02 0.400E+02
0.218E+03 0.200E+00 0.158E+02 0.398E+02
0.219E+03 0.200E+00 0.184E+02 0.398E+02
0.220E+03 0.400E+00 0.217E+02 0.396E+02
0.220E+03 0.500E+00 0.248E+02 0.395E+02
0.220E+03 0.500E+00 0.274E+02 0.395E+02
0.221E+03 0.700E+00 0.306E+02 0.393E+02
0.222E+03 0.700E+00 0.332E+02 0.393E+02
0.222E+03 0.100E+01 0.371E+02 0.390E+02
0.222E+03 0.100E+01 0.390E+02 0.390E+02
0.223E+03 0.110E+01 0.390E+02 0.389E+02
0.224E+03 0.110E+01 0.390E+02 0.389E+02
0.224E+03 0.110E+01 0.390E+02 0.389E+02
0.224E+03 0.110E+01 0.390E+02 0.389E+02
0.225E+03 0.110E+01 0.390E+02 0.389E+02
0.226E+03 0.110E+01 0.390E+02 0.389E+02
0.226E+03 -0.580E+01 0.000E+00 0.458E+02
0.226E+03 -0.580E+01 0.000E+00 0.458E+02
0.227E+03 -0.580E+01 0.000E+00 0.458E+02
0.228E+03 -0.580E+01 0.000E+00 0.458E+02
0.228E+03 -0.580E+01 0.000E+00 0.458E+02
0.228E+03 -0.580E+01 0.000E+00 0.458E+02
0.229E+03 -0.580E+01 0.000E+00 0.458E+02
0.230E+03 -0.580E+01 0.000E+00 0.458E+02
0.230E+03 -0.580E+01 0.000E+00 0.458E+02
0.230E+03 -0.580E+01 0.000E+00 0.458E+02
0.231E+03 -0.580E+01 0.000E+00 0.458E+02
0.232E+03 -0.580E+01 0.000E+00 0.458E+02
0.232E+03 -0.590E+01 0.000E+00 0.459E+02
0.232E+03 -0.590E+01 0.000E+00 0.459E+02
0.233E+03 -0.590E+01 0.000E+00 0.459E+02
0.234E+03 -0.590E+01 0.000E+00 0.459E+02
0.234E+03 -0.590E+01 0.000E+00 0.459E+02
0.234E+03 -0.590E+01 0.000E+00 0.459E+02
0.235E+03 -0.590E+01 0.000E+00 0.459E+02
0.236E+03 -0.590E+01 0.000E+00 0.459E+02
0.236E+03 -0.590E+01 0.000E+00 0.459E+02
0.236E+03 -0.590E+01 0.000E+00 0.459E+02
0.237E+03 -0.590E+01 0.000E+00 0.459E+02
0.238E+03 -0.590E+01 0.000E+00 0.459E+02
0.238E+03 -0.590E+01 0.000E+00 0.459E+02
0.238E+03 -0.590E+01 0.000E+00 0.459E+02
0.239E+03 -0.590E+01 0.000E+00 0.459E+02
0.240E+03 -0.590E+01 0.000E+00 0.459E+02
0.240E+03 -0.590E+01 0.000E+00 0.459E+02
0.240E+03 -0.590E+01 0.000E+00 0.459E+02
0.241E+03 -0.590E+01 0.000E+00 0.459E+02
0.242E+03 -0.590E+01 0.000E+00 0.459E+02
0.242E+03 -0.590E+01 0.000E+00 0.459E+02
0.242E+03 -0.590E+01 0.000E+00 0.459E+02
0.243E+03 -0.590E+01 0.000E+00 0.459E+02
0.244E+03 -0.590E+01 0.000E+00 0.459E+02
0.244E+03 -0.590E+01 0.000E+00 0.459E+02
0.244E+03 -0.590E+01 0.000E+00 0.459E+02
0.245E+03 -0.590E+01 0.000E+00 0.459E+02
0.246E+03 -0.590E+01 0.000E+00 0.459E+02
0.246E+03 -0.600E+01 0.000E+00 0.460E+02
0.246E+03 -0.600E+01 0.000E+00 0.460E+02
0.247E+03 -0.600E+01 0.000E+00 0.460E+02
0.248E+03 -0.600E+01 0.000E+00 0.460E+02
0.248E+03 -0.600E+01 0.000E+00 0.460E+02
0.248E+03 -0.600E+01 0.000E+00 0.460E+02
0.249E+03 -0.600E+01 0.000E+00 0.460E+02
0.250E+03 -0.620E+01 0.000E+00 0.462E+02
0.250E+03 -0.640E+01 0.000E+00 0.464E+02
0.250E+03 -0.660E+01 0.000E+00 0.466E+02
0.251E+03 -0.670E+01 0.000E+00 0.467E+02
0.252E+03 -0.670E+01 0.000E+00 0.467E+02
0.252E+03 -0.680E+01 0.000E+00 0.468E+02
0.252E+03 -0.680E+01 0.000E+00 0.468E+02
0.253E+03 -0.670E+01 0.299E-01 0.467E+02
0.254E+03 -0.670E+01 0.000E+00 0.467E+02
0.254E+03 -0.660E+01 0.142E-01 0.466E+02
0.254E+03 -0.650E+01 0.715E-01 0.465E+02
0.255E+03 -0.640E+01 0.171E+00 0.464E+02
0.256E+03 -0.620E+01 0.889E+00 0.462E+02
0.256E+03 -0.600E+01 0.211E+01 0.460E+02
0.256E+03 -0.590E+01 0.318E+01 0.459E+02
0.257E+03 -0.580E+01 0.413E+01 0.458E+02
0.258E+03 -0.550E+01 0.615E+01 0.455E+02
0.258E+03 -0.540E+01 0.789E+01 0.454E+02
0.258E+03 -0.520E+01 0.999E+01 0.452E+02
0.259E+03 -0.480E+01 0.135E+02 0.448E+02
0.260E+03 -0.470E+01 0.166E+02 0.447E+02
0.260E+03 -0.440E+01 0.203E+02 0.444E+02
0.260E+03 -0.410E+01 0.247E+02 0.441E+02
0.261E+03 -0.400E+01 0.284E+02 0.440E+02
0.262E+03 -0.370E+01 0.327E+02 0.437E+02
0.262E+03 -0.340E+01 0.376E+02 0.434E+02
0.262E+03 -0.330E+01 0.390E+02 0.433E+02
0.263E+03 -0.310E+01 0.390E+02 0.431E+02
0.264E+03 -0.290E+01 0.390E+02 0.429E+02
0.264E+03 -0.290E+01 0.388E+02 0.429E+02
0.264E+03 -0.260E+01 0.390E+02 0.426E+02
0.265E+03 -0.250E+01 0.390E+02 0.425E+02
0.266E+03 -0.250E+01 0.388E+02 0.425E+02
0.266E+03 -0.240E+01 0.390E+02 0.424E+02
0.266E+03 -0.240E+01 0.390E+02 0.424E+02
0.267E+03 -0.240E+01 0.387E+02 0.424E+02
0.268E+03 -0.240E+01 0.384E+02 0.424E+02
0.268E+03 -0.240E+01 0.379E+02 0.424E+02
0.268E+03 -0.250E+01 0.367E+02 0.425E+02
0.269E+03 -0.240E+01 0.362E+02 0.424E+02
0.270E+03 -0.240E+01 0.356E+02 0.424E+02
|
0d15b3145044460360b830ea1a36047197459a45 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2066/CH4/EX4.1/4_1.sce | 9d0180e9bfc369b1ce04ea9e64d0611a6984da1d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 355 | sce | 4_1.sce | clc
clear
//Initialization of variables
rho=1.5 //g/cc
g=32.2 //ft/s^2
dzds=-0.5
x1=0
x2=3
//calculations
function dpds = func(s)
dpds=-rho*g*dzds - rho*(3+9*s)*9
endfunction
r1=func(x1)
r2=func(x2)
//results
printf("At the upper end, dp/ds = %.1f lb/ft^2 per foot",r1)
printf("\n At the lower end, dp/ds = %.1f lb/ft^2 per foot",r2)
|
2f59c1eddba1ac2352cc960eb8b9a404b2abd632 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects - Kopie/SCHI/DZ59LCP/ATWM1_Working_Memory_MEG_DZ59LCP_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce | 1d4de41778322e66d2e7db80673d91cc6e365cbe | [] | no_license | atwm1/Presentation | 65c674180f731f050aad33beefffb9ba0caa6688 | 9732a004ca091b184b670c56c55f538ff6600c08 | refs/heads/master | 2020-04-15T14:04:41.900640 | 2020-02-14T16:10:11 | 2020-02-14T16:10:11 | 56,771,016 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 49,599 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run2.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 300; width = 300; color = 0, 0, 0;} frame1;
box { height = 290; width = 290; color = 255, 255, 255;} frame2;
box { height = 30; width = 4; color = 0, 0, 0;} fix1;
box { height = 4; width = 30; color = 0, 0, 0;} fix2;
box { height = 30; width = 4; color = 255, 0, 0;} fix3;
box { height = 4; width = 30; color = 255, 0, 0;} fix4;
box { height = 290; width = 290; color = 128, 128, 128;} background;
TEMPLATE "StimuliDeclaration.tem" {};
trial {
sound sound_incorrect;
time = 0;
duration = 1;
} wrong;
trial {
sound sound_correct;
time = 0;
duration = 1;
} right;
trial {
sound sound_no_response;
time = 0;
duration = 1;
} miss;
# Start of experiment (MEG only) - sync with CTF software
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
} expStart;
time = 0;
duration = 1000;
code = "ExpStart";
port_code = 80;
};
# baselinePre (at the beginning of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
}default;
time = 0;
duration = 10000;
#mri_pulse = 1;
code = "BaselinePre";
port_code = 91;
};
TEMPLATE "ATWM1_Working_Memory_MEG.tem" {
trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
43 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_111 gabor_044 gabor_027 gabor_065 gabor_111 gabor_044 gabor_027_alt gabor_065_alt "2_1_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_111_044_027_065_target_position_1_2_retrieval_position_2" gabor_circ gabor_044_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_1_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_044_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1842 2992 2442 fixation_cross gabor_160 gabor_078 gabor_105 gabor_054 gabor_160 gabor_078_alt gabor_105_alt gabor_054 "2_2_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2450_gabor_patch_orientation_160_078_105_054_target_position_1_4_retrieval_position_1" gabor_160_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_2_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2542 fixation_cross gabor_090 gabor_068 gabor_131 gabor_108 gabor_090 gabor_068_alt gabor_131_alt gabor_108 "2_3_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2550_gabor_patch_orientation_090_068_131_108_target_position_1_4_retrieval_position_1" gabor_045_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_3_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_143 gabor_127 gabor_016 gabor_061 gabor_143_alt gabor_127 gabor_016_alt gabor_061 "2_4_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_143_127_016_061_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_106_framed blank blank blank blank fixation_cross_target_position_2_4 "2_4_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_106_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2092 2992 2542 fixation_cross gabor_089 gabor_155 gabor_033 gabor_008 gabor_089 gabor_155_alt gabor_033_alt gabor_008 "2_5_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_089_155_033_008_target_position_1_4_retrieval_position_1" gabor_089_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_5_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1942 2992 2392 fixation_cross gabor_096 gabor_029 gabor_165 gabor_011 gabor_096 gabor_029_alt gabor_165_alt gabor_011 "2_6_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2400_gabor_patch_orientation_096_029_165_011_target_position_1_4_retrieval_position_2" gabor_circ gabor_079_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_6_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_079_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_005 gabor_150 gabor_175 gabor_115 gabor_005_alt gabor_150_alt gabor_175 gabor_115 "2_7_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_005_150_175_115_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_067_framed blank blank blank blank fixation_cross_target_position_3_4 "2_7_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_067_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2092 fixation_cross gabor_025 gabor_004 gabor_092 gabor_137 gabor_025 gabor_004_alt gabor_092_alt gabor_137 "2_8_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2100_gabor_patch_orientation_025_004_092_137_target_position_1_4_retrieval_position_1" gabor_163_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_8_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1992 2992 1992 fixation_cross gabor_057 gabor_094 gabor_119 gabor_134 gabor_057_alt gabor_094 gabor_119_alt gabor_134 "2_9_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2000_gabor_patch_orientation_057_094_119_134_target_position_2_4_retrieval_position_1" gabor_057_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_9_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_057_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2142 2992 2442 fixation_cross gabor_117 gabor_010 gabor_141 gabor_179 gabor_117 gabor_010_alt gabor_141 gabor_179_alt "2_10_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_117_010_141_179_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_141_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_10_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1842 2992 1992 fixation_cross gabor_096 gabor_073 gabor_029 gabor_159 gabor_096 gabor_073_alt gabor_029_alt gabor_159 "2_11_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_096_073_029_159_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_159_framed blank blank blank blank fixation_cross_target_position_1_4 "2_11_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1892 2992 1942 fixation_cross gabor_031 gabor_053 gabor_005 gabor_176 gabor_031_alt gabor_053_alt gabor_005 gabor_176 "2_12_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1950_gabor_patch_orientation_031_053_005_176_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_005_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_12_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_142 gabor_173 gabor_108 gabor_026 gabor_142 gabor_173_alt gabor_108 gabor_026_alt "2_13_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_142_173_108_026_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_060_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_13_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2192 2992 2392 fixation_cross gabor_087 gabor_018 gabor_168 gabor_106 gabor_087 gabor_018_alt gabor_168_alt gabor_106 "2_14_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_087_018_168_106_target_position_1_4_retrieval_position_1" gabor_132_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_14_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1842 2992 1892 fixation_cross gabor_089 gabor_107 gabor_175 gabor_020 gabor_089 gabor_107 gabor_175_alt gabor_020_alt "2_15_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_089_107_175_020_target_position_1_2_retrieval_position_1" gabor_089_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_15_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2242 2992 2142 fixation_cross gabor_131 gabor_015 gabor_179 gabor_067 gabor_131_alt gabor_015 gabor_179 gabor_067_alt "2_16_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_131_015_179_067_target_position_2_3_retrieval_position_2" gabor_circ gabor_015_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_16_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_015_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2092 2992 2042 fixation_cross gabor_095 gabor_111 gabor_076 gabor_148 gabor_095 gabor_111_alt gabor_076_alt gabor_148 "2_17_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2100_3000_2050_gabor_patch_orientation_095_111_076_148_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_030_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_17_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_030_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_090 gabor_163 gabor_112 gabor_042 gabor_090 gabor_163 gabor_112_alt gabor_042_alt "2_18_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_090_163_112_042_target_position_1_2_retrieval_position_2" gabor_circ gabor_023_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_18_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 2092 fixation_cross gabor_180 gabor_045 gabor_124 gabor_099 gabor_180_alt gabor_045 gabor_124 gabor_099_alt "2_19_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_180_045_124_099_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_074_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_19_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_074_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1942 2992 2492 fixation_cross gabor_179 gabor_156 gabor_115 gabor_094 gabor_179_alt gabor_156 gabor_115_alt gabor_094 "2_20_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2500_gabor_patch_orientation_179_156_115_094_target_position_2_4_retrieval_position_1" gabor_179_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_20_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_179_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 2242 fixation_cross gabor_149 gabor_111 gabor_026 gabor_086 gabor_149_alt gabor_111_alt gabor_026 gabor_086 "2_21_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_149_111_026_086_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_165_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_21_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 2492 fixation_cross gabor_086 gabor_153 gabor_046 gabor_172 gabor_086 gabor_153 gabor_046_alt gabor_172_alt "2_22_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_086_153_046_172_target_position_1_2_retrieval_position_2" gabor_circ gabor_017_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_22_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 1892 fixation_cross gabor_146 gabor_173 gabor_100 gabor_127 gabor_146_alt gabor_173 gabor_100_alt gabor_127 "2_23_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_146_173_100_127_target_position_2_4_retrieval_position_2" gabor_circ gabor_173_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_23_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2142 2992 2142 fixation_cross gabor_040 gabor_061 gabor_024 gabor_088 gabor_040 gabor_061 gabor_024_alt gabor_088_alt "2_24_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_040_061_024_088_target_position_1_2_retrieval_position_2" gabor_circ gabor_061_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_24_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_061_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 2342 fixation_cross gabor_040 gabor_007 gabor_152 gabor_071 gabor_040 gabor_007 gabor_152_alt gabor_071_alt "2_25_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_040_007_152_071_target_position_1_2_retrieval_position_1" gabor_040_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_25_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2042 2992 1942 fixation_cross gabor_130 gabor_178 gabor_019 gabor_070 gabor_130_alt gabor_178_alt gabor_019 gabor_070 "2_26_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_1950_gabor_patch_orientation_130_178_019_070_target_position_3_4_retrieval_position_2" gabor_circ gabor_043_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_26_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_043_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_148 gabor_177 gabor_006 gabor_021 gabor_148_alt gabor_177 gabor_006_alt gabor_021 "2_27_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_148_177_006_021_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_021_framed blank blank blank blank fixation_cross_target_position_2_4 "2_27_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_021_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2192 2992 2592 fixation_cross gabor_020 gabor_138 gabor_088 gabor_073 gabor_020 gabor_138_alt gabor_088 gabor_073_alt "2_28_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_020_138_088_073_target_position_1_3_retrieval_position_1" gabor_155_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_28_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_155_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_062 gabor_038 gabor_172 gabor_102 gabor_062 gabor_038 gabor_172_alt gabor_102_alt "2_29_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_062_038_172_102_target_position_1_2_retrieval_position_2" gabor_circ gabor_038_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_29_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 2492 fixation_cross gabor_089 gabor_142 gabor_056 gabor_023 gabor_089 gabor_142_alt gabor_056_alt gabor_023 "2_30_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_089_142_056_023_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_162_framed blank blank blank blank fixation_cross_target_position_1_4 "2_30_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2092 2992 2542 fixation_cross gabor_115 gabor_083 gabor_166 gabor_149 gabor_115_alt gabor_083_alt gabor_166 gabor_149 "2_31_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_115_083_166_149_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_166_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_31_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_166_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2142 2992 2442 fixation_cross gabor_043 gabor_126 gabor_015 gabor_095 gabor_043_alt gabor_126_alt gabor_015 gabor_095 "2_32_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_043_126_015_095_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_065_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_32_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_065_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2242 2992 1992 fixation_cross gabor_157 gabor_131 gabor_072 gabor_048 gabor_157_alt gabor_131 gabor_072_alt gabor_048 "2_33_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2000_gabor_patch_orientation_157_131_072_048_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_025_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_33_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_025_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_001 gabor_057 gabor_131 gabor_090 gabor_001 gabor_057 gabor_131_alt gabor_090_alt "2_34_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_001_057_131_090_target_position_1_2_retrieval_position_2" gabor_circ gabor_057_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_34_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2342 fixation_cross gabor_089 gabor_160 gabor_134 gabor_111 gabor_089_alt gabor_160 gabor_134_alt gabor_111 "2_35_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_089_160_134_111_target_position_2_4_retrieval_position_2" gabor_circ gabor_160_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_35_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 2192 fixation_cross gabor_180 gabor_029 gabor_104 gabor_045 gabor_180 gabor_029 gabor_104_alt gabor_045_alt "2_36_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_180_029_104_045_target_position_1_2_retrieval_position_1" gabor_135_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_36_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1892 2992 1992 fixation_cross gabor_030 gabor_079 gabor_004 gabor_142 gabor_030_alt gabor_079_alt gabor_004 gabor_142 "2_37_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2000_gabor_patch_orientation_030_079_004_142_target_position_3_4_retrieval_position_1" gabor_030_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_37_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_030_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 2042 fixation_cross gabor_110 gabor_154 gabor_070 gabor_091 gabor_110_alt gabor_154 gabor_070_alt gabor_091 "2_38_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2050_gabor_patch_orientation_110_154_070_091_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_138_framed blank blank blank blank fixation_cross_target_position_2_4 "2_38_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_137 gabor_107 gabor_050 gabor_066 gabor_137 gabor_107_alt gabor_050_alt gabor_066 "2_39_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_137_107_050_066_target_position_1_4_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_39_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2242 2992 2242 fixation_cross gabor_035 gabor_087 gabor_170 gabor_012 gabor_035_alt gabor_087 gabor_170 gabor_012_alt "2_40_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_035_087_170_012_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_122_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_40_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_122_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2192 2992 1942 fixation_cross gabor_149 gabor_033 gabor_015 gabor_120 gabor_149 gabor_033_alt gabor_015 gabor_120_alt "2_41_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_149_033_015_120_target_position_1_3_retrieval_position_1" gabor_104_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_41_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_104_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 2092 2992 2592 fixation_cross gabor_142 gabor_084 gabor_019 gabor_002 gabor_142 gabor_084_alt gabor_019 gabor_002_alt "2_42_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2100_3000_2600_gabor_patch_orientation_142_084_019_002_target_position_1_3_retrieval_position_2" gabor_circ gabor_084_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_42_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_084_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2192 2992 2042 fixation_cross gabor_051 gabor_177 gabor_101 gabor_072 gabor_051_alt gabor_177_alt gabor_101 gabor_072 "2_43_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_051_177_101_072_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_072_framed blank blank blank blank fixation_cross_target_position_3_4 "2_43_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_103 gabor_176 gabor_063 gabor_047 gabor_103_alt gabor_176 gabor_063 gabor_047_alt "2_44_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_103_176_063_047_target_position_2_3_retrieval_position_2" gabor_circ gabor_129_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_44_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_129_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1742 2992 1892 fixation_cross gabor_029 gabor_109 gabor_050 gabor_139 gabor_029_alt gabor_109 gabor_050 gabor_139_alt "2_45_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_029_109_050_139_target_position_2_3_retrieval_position_2" gabor_circ gabor_159_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_45_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_159_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1842 2992 2342 fixation_cross gabor_052 gabor_075 gabor_111 gabor_025 gabor_052 gabor_075_alt gabor_111_alt gabor_025 "2_46_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2350_gabor_patch_orientation_052_075_111_025_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_164_framed blank blank blank blank fixation_cross_target_position_1_4 "2_46_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1942 2992 2092 fixation_cross gabor_012 gabor_075 gabor_047 gabor_027 gabor_012 gabor_075_alt gabor_047 gabor_027_alt "2_47_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2100_gabor_patch_orientation_012_075_047_027_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_163_framed blank blank blank blank fixation_cross_target_position_1_3 "2_47_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_163_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_094 gabor_007 gabor_063 gabor_153 gabor_094 gabor_007_alt gabor_063 gabor_153_alt "2_48_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_094_007_063_153_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_113_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_48_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 2092 fixation_cross gabor_071 gabor_009 gabor_038 gabor_146 gabor_071_alt gabor_009_alt gabor_038 gabor_146 "2_49_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_071_009_038_146_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_177_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_49_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_177_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1942 2992 2392 fixation_cross gabor_026 gabor_068 gabor_092 gabor_110 gabor_026_alt gabor_068 gabor_092_alt gabor_110 "2_50_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2400_gabor_patch_orientation_026_068_092_110_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_092_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_50_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_092_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2142 2992 2142 fixation_cross gabor_025 gabor_050 gabor_176 gabor_135 gabor_025_alt gabor_050 gabor_176_alt gabor_135 "2_51_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_025_050_176_135_target_position_2_4_retrieval_position_2" gabor_circ gabor_050_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "2_51_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2242 2992 2292 fixation_cross gabor_171 gabor_093 gabor_038 gabor_007 gabor_171_alt gabor_093 gabor_038_alt gabor_007 "2_52_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_171_093_038_007_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_007_framed blank blank blank blank fixation_cross_target_position_2_4 "2_52_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1992 2992 2142 fixation_cross gabor_143 gabor_059 gabor_079 gabor_033 gabor_143 gabor_059_alt gabor_079_alt gabor_033 "2_53_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_143_059_079_033_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_033_framed blank blank blank blank fixation_cross_target_position_1_4 "2_53_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_033_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2242 2992 2492 fixation_cross gabor_027 gabor_115 gabor_137 gabor_082 gabor_027 gabor_115_alt gabor_137_alt gabor_082 "2_54_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_027_115_137_082_target_position_1_4_retrieval_position_1" gabor_027_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_54_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_059 gabor_025 gabor_101 gabor_141 gabor_059 gabor_025 gabor_101_alt gabor_141_alt "2_55_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_059_025_101_141_target_position_1_2_retrieval_position_2" gabor_circ gabor_165_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_55_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_165_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2142 2992 2442 fixation_cross gabor_060 gabor_007 gabor_133 gabor_092 gabor_060_alt gabor_007_alt gabor_133 gabor_092 "2_56_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_060_007_133_092_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_092_framed blank blank blank blank fixation_cross_target_position_3_4 "2_56_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_092_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 2042 2992 2292 fixation_cross gabor_180 gabor_114 gabor_030 gabor_008 gabor_180 gabor_114_alt gabor_030_alt gabor_008 "2_57_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_2300_gabor_patch_orientation_180_114_030_008_target_position_1_4_retrieval_position_2" gabor_circ gabor_114_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_57_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_114_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 2192 2992 2592 fixation_cross gabor_169 gabor_053 gabor_032 gabor_139 gabor_169 gabor_053_alt gabor_032_alt gabor_139 "2_58_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_169_053_032_139_target_position_1_4_retrieval_position_1" gabor_119_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "2_58_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2042 2992 2592 fixation_cross gabor_016 gabor_001 gabor_049 gabor_032 gabor_016_alt gabor_001 gabor_049 gabor_032_alt "2_59_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_2600_gabor_patch_orientation_016_001_049_032_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_167_framed blank blank blank blank fixation_cross_target_position_2_3 "2_59_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_167_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1742 2992 2242 fixation_cross gabor_148 gabor_100 gabor_127 gabor_166 gabor_148 gabor_100_alt gabor_127 gabor_166_alt "2_60_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_148_100_127_166_target_position_1_3_retrieval_position_1" gabor_012_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "2_60_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_012_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_041 gabor_097 gabor_023 gabor_056 gabor_041_alt gabor_097 gabor_023 gabor_056_alt "2_61_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_041_097_023_056_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_023_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_61_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1942 2992 1892 fixation_cross gabor_078 gabor_047 gabor_014 gabor_032 gabor_078 gabor_047_alt gabor_014_alt gabor_032 "2_62_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_1900_gabor_patch_orientation_078_047_014_032_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_168_framed blank blank blank blank fixation_cross_target_position_1_4 "2_62_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 2042 2992 2192 fixation_cross gabor_147 gabor_092 gabor_174 gabor_128 gabor_147_alt gabor_092 gabor_174 gabor_128_alt "2_63_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_147_092_174_128_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_174_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "2_63_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_174_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_010 gabor_160 gabor_175 gabor_092 gabor_010_alt gabor_160_alt gabor_175 gabor_092 "2_64_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_010_160_175_092_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_175_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_64_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1792 2992 2192 fixation_cross gabor_064 gabor_129 gabor_153 gabor_014 gabor_064_alt gabor_129_alt gabor_153 gabor_014 "2_65_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_064_129_153_014_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_153_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_65_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1992 2992 1942 fixation_cross gabor_117 gabor_031 gabor_175 gabor_010 gabor_117_alt gabor_031_alt gabor_175 gabor_010 "2_66_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_1950_gabor_patch_orientation_117_031_175_010_target_position_3_4_retrieval_position_1" gabor_117_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "2_66_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_117_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1792 2992 2092 fixation_cross gabor_007 gabor_159 gabor_049 gabor_089 gabor_007_alt gabor_159 gabor_049_alt gabor_089 "2_67_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_007_159_049_089_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_089_framed blank blank blank blank fixation_cross_target_position_2_4 "2_67_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_046 gabor_010 gabor_029 gabor_063 gabor_046 gabor_010 gabor_029_alt gabor_063_alt "2_68_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_046_010_029_063_target_position_1_2_retrieval_position_1" gabor_095_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_68_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_095_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1742 2992 2192 fixation_cross gabor_169 gabor_022 gabor_137 gabor_062 gabor_169 gabor_022 gabor_137_alt gabor_062_alt "2_69_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_2200_gabor_patch_orientation_169_022_137_062_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_002_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_69_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_002_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_114 gabor_156 gabor_034 gabor_088 gabor_114 gabor_156 gabor_034_alt gabor_088_alt "2_70_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_114_156_034_088_target_position_1_2_retrieval_position_1" gabor_114_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "2_70_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_114_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
};
# baselinePost (at the end of the session)
trial {
picture {
box frame1; x=0; y=0;
box frame2; x=0; y=0;
box background; x=0; y=0;
bitmap fixation_cross_black; x=0; y=0;
};
time = 0;
duration = 5000;
code = "BaselinePost";
port_code = 92;
}; |
251346a799d57d08c0697413a0659edceda7ed6b | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH7/EX7.a.13/Example_a_7_13.sce | 4df712d540525872d2bb3c5f0310d3976ed218e6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 541 | sce | Example_a_7_13.sce | //Example_a_7_13 page no:280
clc;
V_abmag=20;
V_abang=0;
V_abreal=20;
V_abimag=0;
V__abmag=5*5;
V__abang=0+53.13;
V__abreal=15;
V__abimag=19.99;
V___abmag=0;
V___abang=0;
//calculating the voltage across AB
Vab=V_abreal+V__abreal+(V_abimag+V__abimag)*%i;
Vabmag=sqrt(real(Vab)^2+imag(Vab)^2)
Vabang=atand(imag(Vab)/real(Vab));
Zth=3+4*%i;
disp(Vabmag,"the magnitude of voltage across AB is (in V)");
disp(Vabang,"the angle of voltage across AB is (in degree)");
disp(Zth,"the impedance across terminals AB is (in ohm)");
|
bc607a78af6916b1c80bfce6be51e23d13c1b690 | 4a1949be12fbe9a81d9308381b34c611e65877ca | /tests/execution/test_builtins.tst | 87a02a53333526a2bd5c6eb38e4885b27f94c24b | [] | no_license | ng88/trad | 26439d8fe2284ece19d6fbfaa397d3f6f0d13e78 | e4d3d4d56928539144d30c5c49e01e65c9b8729c | refs/heads/master | 2020-12-05T07:31:25.854231 | 2008-02-29T10:15:34 | 2008-02-29T10:15:34 | 67,351,952 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 493 | tst | test_builtins.tst |
class MaClasse
public MaClasse() {}
public void main()
{
VAR string s1, ret;
VAR integer n, f;
prints("Entrez une chaine :\n");
s1 := getchar();
prints("Entrez une position de depart :\n");
f := getint();
prints("Entrez une longueur :\n");
n := getint();
ret := substring(s1, f, n);
prints("Entree :\n");
prints(s1);
prints("Depart=");
printi(f);
prints(", len=");
printi(n);
prints("\nResultat :\n");
prints(ret);
freestr(s1);
freestr(ret);
}
end
|
838818da5a62d90051cb1dc2c76ba05f3ff30f8b | 4ddcc4e4acac0192329e4214a1fe13e7db9341ee | /Morse2.sci | dc408543c0f2ea23f7928d83ea42506542b873ef | [] | no_license | Aditisharma1993/Introduction-to-Variational-Monte-Carlo-approach | ea9cf6c23061df50ba9db0d6fa023036a3957973 | 24a559cb8698ffa96617a5beb25ae3214464326c | refs/heads/main | 2023-02-04T08:38:25.562650 | 2020-12-27T15:21:30 | 2020-12-27T15:21:30 | 324,772,402 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,932 | sci | Morse2.sci | //Scilab code to determine model parameters for HCl molecule using VMC}
function [var_n] = VMCHCl(var_o,NumOfItns,I)
//Written by Aditi and O.S.K.S. Sastri
// var_o is an array consisting of model parameters given as input
// NumOfItns denotes number of iterations
// I defines limits of interval range [-I,I] in which random value r is generated
// for varying any parameter as var(i) = var(i) + r
FreqExpt = [2886;5668;8347]; // Exp. vibrational frequencies in wavenumbers
[Eno] = HCl(var_o,J); // Determining energy eigen values using matrix method
N = length(Eno); // N stores length of eigen values vector
// Determining first three vibrational frequencies
for i = 1:3
FreqSimOld(i) = (Eno(N-i) - Eno(N));
end
SqrErrorOld = (FreqExpt - FreqSimOld).^2;
chisqrold = mean(SqrErrorOld); // calculate old chi square value
disp(chisqrold); // displaying old chi-square value
n = 1; //initialising variable for iterative minimization
while i <= NumOfItns
k = 1; // Choosing kth model parameter
while k <= 3
var_n = var_o; // making old parameters as new ones
// Monte-Carlo step
r = (-I+2*I*rand());//random value in interval [-I,I]
var_n(k) = var_o(k) + r;
[Enn] = HCl(var_n,J); // Redetermining energy eigen values using matrix method
N = length(Enn);
for j = 1:3
FreqSimNew(j) = (Enn(N-j)-Enn(N)); //Redetermining vibrational freqs with new constants
end
SqrErrorNew = (FreqExpt - FreqSimNew).^2;
chisqrnew = mean(SqrErrorNew); // Calculating new chi-square value
//Variational step
if (chisqrnew) < (chisqrold) then
var_o = var_n; // Updating old variables with new ones
chisqrmin = chisqrnew; // making new chi-square value as minimum value
chisqrold = chisqrnew; // updating chisqrold as chosqrnew
else
chisqrmin = chisqrold; //retaining old chisqr value as minimum value
end
k = k+1;
disp([FreqSimNew,FreqExpt],chisqrmin);
end
n = n+1;
end
endfunction
|
211f01a63f00e3c72632b043c96577b9061d32a7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH15/EX15.11/11.sce | f80dd41a572c40ecb5f491b6f4e3559f28bfbead | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 445 | sce | 11.sce | clc
r1=0.06; //m
r2=0.08; //m
k_A=42; //W/m 0C
k_B=0.8; //W/m 0C
t_hf=150; //0C
t_cf=20; //0C
h_hf=100; //W/m^2 0C
h_cf=30; //W/m^2 0C
//Q=2.1*2*%pi*r*L kW
//Q=0.989*L*10^3 W
//Q=2*%pi*L*(t_hf-t_cf)/(1/h_hf/r1 + log(r2/r1)/k_A + log(r3/r2)/k_B + 1/h_cf/r3)
//By solving above equation, using hit and trial method we get
r3=0.105; //m
thickness=(r3-r2)*1000; //mm
disp("Thickness of insulation =")
disp(thickness)
disp("mm") |
fab36be2306a02cf37fafab5cd308230c75b046d | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.0/macros/elem/asin.sci | 5e9024cab13bf35a1e820cfcd6da82c1752eedcc | [
"MIT",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 493 | sci | asin.sci | function [t]=asin(x)
//Syntax : [t]=asin(x)
//
//Sine-inverse of x
//Entries of vector x must be in [-1,+1]
//Entries of t are in ]-pi/2,pi/2[ x ]-inf,+inf[
// -pi/2 x [0,+inf] and pi/2 x ]-inf,0] (real x imag)
//
//!
if type(x)<>1 then error(53),end
[m,n]=size(x)
if m<>n then t=-%i*log(%i*x+sqrt(ones(m,n)-x.*x))
else t=-%i*log(%i*x+sqrt(eye-x*x))
end
if m=n then if m*n>1 then return,end,end
if norm(imag(x))=0 then if maxi(abs(x))<=1 then t=real(t);end;end
|
28bd6a881a0ae7b148a78a8a3e4b957ecafd46f8 | 7c129ce7f747d44e6c7cedea4c007088e87aa90c | /Programs/Overlap_Save.sce | 11f18fe5336e596296c9f607f0f7e8f8f8c8c1c1 | [] | no_license | KilariSandhya/Digital-Signal-Processing | 08d97a6d46ff46c533c7a2114c19883980c85e38 | bad9dab8f5e02a8f1638ce20351e9eba1a0a11d0 | refs/heads/master | 2022-11-18T03:23:47.628061 | 2020-07-20T07:46:02 | 2020-07-20T08:00:23 | 281,047,630 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,187 | sce | Overlap_Save.sce | clc;close;clear;
[x,Fs,bits]=wavread("machali.wav");
Fs=8000;
bits=16
fm=3000 //freq of noise signal given
t=0.0001:1/Fs:length(x)*1/Fs;
xn=sin(2*%pi*fm*t);
y=x+xn;
h=[1 -2*cos(2*%pi*(3000/Fs)) 1]; //impulse response of filter
//overlap and save method
//getting values of x1,x2,x3.....
i=1; j=1;
r(1,1)=0;
r(1,2)=0;
j=3;
for n=1:length(x)
if modulo(n,98) == 0 then
r(i,j)=y(n);
j=1;
i=i+1;
r(i,j)=y(n-1);
j=j+1;
r(i,j)=y(n);
j=3;
else
r(i,j)=y(n);
j=j+1;
end
end
h=[h zeros(1,(100-length(h)))];
N=100;
N1=length(x);
N2=length(h);
for i=1:386
for n=0:N-1
y1(n+1)=0
for k=0:(N-1)
n_minus_k_modN=modulo(n-k,N);
if n_minus_k_modN<0
n_minus_k_modN=n_minus_k_modN+N;
end
if((n_minus_k_modN>=0)&(n_minus_k_modN<N))
y1(n+1)=y1(n+1)+r(i,k+1)*h(n_minus_k_modN+1);
end
end
end
for j=1:100
z(i,j)=y1(j)
end
end
n=1;
for i=1:386
for j=3:98
a(n)=z(i,j);
n=n+1;
end
end
figure;
subplot(311);plot2d(y);
subplot(312);plot2d(a);
subplot(313);plot2d(x); |
7bd2419a65fd1581bb786692203062a09ecd1c8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /260/CH6/EX6.7/6_7.sce | 6c10c1568825ad286ca1f47cd74d00e13ca21425 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 214 | sce | 6_7.sce | //Eg-6.7
//pg-290
clear
clc
//sorting data in ascending order
x=[233;216;229;238];
m1=median(x);
y=[56;62;51];
m2=median(y);
disp("medians of given data are as follows")
disp(m1)
disp(m2) |
65a39bc45b200d2558e82a07de0e1b6dd6749c4e | 449d555969bfd7befe906877abab098c6e63a0e8 | /1475/CH1/EX1.16/Example_1_16.sce | d7c6b71b35fc934adf65fd97834726ce67113fdf | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 241 | sce | Example_1_16.sce | //Example 1.16
clc;
clear;
N=10;
disp(N,"total No. of Balls (white+Black) (N)=");
M1=6;
disp(M1,"No. of (White Balls)= ");
M2=4;
disp(M2,"No. of (Black Balls)= ");
P1=M1/N;
disp(P1,"Probability of white ball to be drawn is=");
|
0262359c10304c7a841bfb98d6899d5d4c974e3e | 8458ae69238b4e9e89cec1f6bdb30f6d009e3053 | /filters/Bandpass.sci | 288ea17355c13222c093357e746f18f93fdd6528 | [] | no_license | keigorori/signal_processing | aa5f18bcb2be385ce3a4fef208d29b05a036faf9 | a30e41e3fd2c3287af43e0d4bd554020a5055ff3 | refs/heads/master | 2020-04-05T10:45:01.018660 | 2019-02-08T02:08:59 | 2019-02-08T02:08:59 | 156,809,290 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,280 | sci | Bandpass.sci | ////////////////////////
// bandpass filter
// FIR カイザー窓
// cutoffFreq:Hz
// stopBandAttenuation:dB(パワー)
// stansitionBand:Hz
////////////////////////
function [output, wfm, fr] = Bandpass(input, samplingRate, cutoffFreqLow, cutoffFreqHigh, stopBandAttenuation, transitionBand)
// 減衰量からカイザー窓のパラメータを求める
// ひとまず-50dBより大きいものだけ対応
alpha = 0.1102*(-stopBandAttenuation-8.7);
// 減衰量と遷移帯域から次数を求める
tb = transitionBand * (2*%pi) / samplingRate;
filterOrder = (-stopBandAttenuation-7.95) / (2.285*tb);
filterOrder = ceil(filterOrder);
N = size( input, 'c'); // サンプル数
windowType = 'kr'; // カイザー窓
windowParameter = [alpha 0];
cf = [cutoffFreqLow/samplingRate, cutoffFreqHigh/samplingRate]; // [0, 0.5]の係数に変換
// フィルタ生成&適用(窓関数法)
[wft, wfm, fr] = wfir('bp', filterOrder, cf, windowType, windowParameter);
output=convol( input, wft);
output = output(filterOrder:$); // 頭の(次数-1)サンプルは正しく出力されないので捨てる
// 周波数応答(wfirのwfm出力は256サンプル固定なので自前で計算)
[wfm, fr] = frmag(wft, N/2);
fr = fr * samplingRate;
endfunction
|
ef0c128446832c1b5df32a57a101bc730aed6905 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3782/CH1/EX1.26/Ex1_26.sce | e3e3fe5ecb94ddb88b40d2e28cb17d12325b2044 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 236 | sce | Ex1_26.sce |
//CH-1 PAGE-43 PB-3
//
//
l=1.2 //length
al=30 //map length
al=al/100
sc=1000 //suitable scale
RF=(al)/(sc*l)
printf("\n RF= %0.3f ",RF)
cm1=(1/RF)/(100)
lsc=15
cm15=lsc*cm1
printf("\n length of scale is %0.3f meters',cm15)
|
c334d275def3a69973ca96afd002b8d72f31a818 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2489/CH10/EX10.10/10_10.sce | e797f013ef518dd5f93dbb5053ea4f3b9bca55e1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 655 | sce | 10_10.sce | clc
//Intitalisation of variables
clear
p1= 141 //mm
p2= 387 //mm
n1= 2 //moles
n2= 1 //moles
T1= 653 //K
T2= 693 //K
x1= 159.6 //mm
//CALCULATIONS
Phg= 2*p1/3
Po2= 0.5*Phg
Phg1= 2*p2/3
Po21= 0.5*Phg1
Kp1= Phg^2*Po2
Kp2= Phg1^2*Po21
dH= log10(Kp2/Kp1)*4.576*T1*T2/(T2-T1)
Kp3= (x1*2)^2*x1
T3= 1/((log10(Kp1/Kp3)*4.576/(dH+9))+(1/T1))
T4= T3-273
//RESULTS
printf ('PHg = %.f mm',Phg)
printf ('\n PO2 = %.f mm',Po2)
printf ('\n PHg = %.f mm',Phg1)
printf ('\n PO2 = %.f mm',Po21)
printf ('\n Kp1 = %.2e',Kp1)
printf ('\n Kp2 = %.2e',Kp2)
printf ('\n dH = %.f cal',dH+9)
printf ('\n T3 = %.f K',T3)
printf ('\n T4 = %.f C',T4)
|
d59284f577df620b862fe5df26d7e378fac072ce | 449d555969bfd7befe906877abab098c6e63a0e8 | /2288/CH2/EX2.15.3/ex2_15_3.sce | 8316237af741710e09b13a204d6090b92015493b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 344 | sce | ex2_15_3.sce | //Exa2.15.3
clc;
clear;
close;
// Given data
T1 = 300;// in K
T2 = 400;// in K
del_E = 0.27;// Fermi level in eV
KT = (0.0259) * (T2/T1);// in eV
N_v = 1.04 * 10^19;// in cm^-3
N_v = N_v * (T2/T1)^(3/2);// in cm^-3
p_o = N_v * exp(-(del_E)/KT);// in per cm^3
disp(p_o,"The thermal equilibrium hole concentration in per cm^3 is");
|
ad512f108716bd466b2fc18e79f94459fdabb40f | 449d555969bfd7befe906877abab098c6e63a0e8 | /24/CH25/EX25.4/Example25_4.sce | bcc811b19307e40f9b95256d9067781e2472e448 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 358 | sce | Example25_4.sce | exec('electrostatics.sci', -1)
//Given that
n = 12
qT = -n*e
R = 1 //(say)
//Sample Problem 25-4a
printf("**Sample Problem 25-4a**\n")
V = EPotential(qT, R)
printf("The electric potential at the center is equal to %e/R Volts", V)
//Sample Problem 25-4b
printf("**Sample Problem 25-4b**\n")
printf("It does not change in this configuration") |
04a07345694052c8e582e7b39deb9a9c8e03187a | 89838d8f710d1bef8ebcf2fff7ff643f0edba610 | /PRG/getInformation.sci | 83feab05d16b29eaca867f9cfe6ecec809539b70 | [
"MIT"
] | permissive | Souilla-Luc/CPET_COSMED | a078c5e8ba2945a7e6d1f48690927e7cfa0eca7c | 9cb4d349d09ce147550a9adf1a0c1a1725bff275 | refs/heads/main | 2023-04-15T03:04:42.303339 | 2021-04-28T15:11:22 | 2021-04-28T15:11:22 | 360,626,406 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 633 | sci | getInformation.sci | // function to read a character string of interest
// Logic : we need to know the measure of interest, to find corresponding index
// measure = what we want to read (could be a matrix)
// namefile= Matrix of character string
// apply "getInformation" function
//endfunction
function [value]=getInformation(measure,namefile)
for i=1:size(measure,"c");
[irowname,icolname]=find(namefile == measure(i));
icolname=icolname+1; // icolname= label of interest , icolname+1= value correspondng to the label
//done: get value with correct index
value(i)=namefile(irowname,icolname);
end
endfunction
|
90861dd8da981755b4fee2300b506c9aecdb2feb | c6515791fea5828996a3924a74b5358852bc69f0 | /ap5_rotacao/compressao.sci | 68e9cf350c7b9696cf5596a3f0d08e16d25c90f0 | [] | no_license | fernandascovino/fgv_math_modeling_3 | 366f05faa9fc657473acad8c1061b7c6feed8d4a | 11853e0bf2c05ad2df4fb369dfa922fc50c68ceb | refs/heads/master | 2023-02-24T23:03:18.431724 | 2021-01-31T18:08:16 | 2021-01-31T18:08:16 | 334,722,683 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 289 | sci | compressao.sci | function [B]=compressao(A,p);
[U,S,V]=svd(A)
v = find(S>0); // vetor que contém os valores não nulos de S
r = size(v,2); // valores singulares positivos (não nulos)
s = max(1:p*r), V = V';
B=U(:,1:s)*S(1:s,1:s)*V(1:s,:);
visualization(B)
endfunction
|
de2aa2526b12dbd096afc1f70146261a66534398 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3401/CH6/EX6.5/Ex6_5.sce | efb787d4e7bc136a0bfc598edb9731c9d06ff495 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 310 | sce | Ex6_5.sce | clc
k=8.617*10**-5//eV/K
e=1.6*10**-19 //C
un=1200
Nd=10^16 //cm^-3
esp0=8.85*10^-14
espr=11.7
sigma=e*un*Nd
disp(sigma,"conductivity in per ohm cm is= ")
esp=espr*esp0
disp(esp,"permittivity of silicon in F/cm")
taud=esp/sigma
disp(taud,"dielectric relaxtion time constant in sec is= ")
|
fe3f5ebd4b82b91472d82a18c4db6768bf6962f4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /716/CH9/EX9.2.m/MatLab_Prog9_2.sce | 93321c76e5f217e6199cfa4a2c3e81ae0f5dbe06 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 625 | sce | MatLab_Prog9_2.sce | //Perform 16 point DFT of x(n)=(1/3 1/3 1/3) and sketch magnitude and phase spectrum
clc;
clear;
N=16;
xn=zeros(1,16);
xn(1)=1/3;
xn(2)=1/3;
xn(3)=1/3;
for k=0:1:N-1
Xk(k+1)=0;
for n=0:1:N-1
Xk(k+1)=Xk(k+1)+xn(n+1)*exp(-%i*2*%pi*k*n/N);
end
end
wk=0:1:N-1;
disp(Xk,'16 point DFT of x(n)=>');
disp(abs(Xk),'magnitude of 16 point DFT x(n)=>');
disp(atan(imag(Xk),real(Xk)),'phase of 16 point DFT x(n)=>');
subplot(1,2,1)
plot2d3(wk,abs(Xk),2);
xtitle('Magnitude Spectrum','k','|X(k)|');
subplot(1,2,2)
plot2d3(wk,atan(imag(Xk),real(Xk)),2);
xtitle('Phase Spectrum','k','angle(X(k))'); |
11e6f6262c318fa56239ed12b9cef889bd04a6b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH12/EX12.9/exa12_9.sce | 77dba4d2012dac7de7f9d1f39b1d90bbca5ba67f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 608 | sce | exa12_9.sce | //Caption:determine_peak_overshoot
//example 12.9
//page 523
s=%s;
syms t K;
CL=sym('(s+1)/(s^2+2*s+5)');
CL=K*CL;
disp(CL,"C(s)/R(s)=")
//for unit step response R(s)=1/s;
d=CL*(1/s)
Css=limit(s*d,s,0)
disp(Css,"Css=");
//since Css=0.8 (given)
K=0.8*5;
CL=eval(CL);
disp(CL,"C(s)/R(s)=");
//for unit step response R(s)=1/s;
d=CL*(1/s)
disp(d,"C(s)=");
c=ilaplace(d,s,t);
disp(c,"c(t)=");
//for peak time we get tp=0.785
t=0.785
a=s*d;
a=simple(a)
Cmax=(4/5)*(1-exp(-t)*cos(2*%pi/4)+exp(-t)*2*sin(2*%pi/4))
Css=limit(a,s,0)
disp(Css,"Css=");
Mp=((Cmax-Css)/Css)*100
Mp=float(Mp)
disp(Mp,"peak_overshoot=")
|
9f8c91a463a85d7a2b5c9570fa142de6a6beb25f | fd56912428cdd6be1cdaaecf2b551af84d20cafa | /5.sce | 32ce6dc38f16acb37194b4ea9ff45d47b616ca0c | [] | no_license | prernams/LAA-Assignment | ebb528f06918c2b9a054376908c7f236bf3d97ec | c3bea5b3d3dd7edf93662cc92ee82c6919310fd6 | refs/heads/main | 2023-05-27T16:15:08.449010 | 2021-06-16T04:48:20 | 2021-06-16T04:48:20 | 377,373,595 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 365 | sce | 5.sce | clc;
clear;
close;
A=[1,2,0,1;0,1,1,0;1,2,0,1];
disp(A,'A=');
[m,n]=size(A);
disp(m,'m=');
disp(n,'n=');
[v,pivot]=rref(A);
disp(rref(A));
disp(v);
r=length(pivot);
disp(r,'rank=');
cs=A(:,pivot);
disp(cs,'Column Space=');
ns=kernel(A);
disp(ns,'Null Space=');
rs=v(1:r,:)';
disp(rs,'Row Space=');
lns=kernel(A');
disp(lns,'Left Null Space=');
|
55249421ca01771c002eb0c158763382ac32d13a | 449d555969bfd7befe906877abab098c6e63a0e8 | /617/CH9/EX9.6/Example9_6.sci | c5e9b521ab4600fc8c1ffd9aff9277804cd2e373 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,044 | sci | Example9_6.sci | clc();
clear;
// To calculate temperature difference for heat exchanger
Tc1 = 120; // Inlet cold fluid temperature in degF
Tc2 = 310; // Outlet cold fluid temperature in degF
Th1 = 500; // Inlet hot fluid temperature in degF
Th2 = 400; // Outlet hot fluid temperature in degF
K = (Tc2-Tc1)/(Th2-Tc2); // Temperature ratio
R = (Th1-Th2)/(Tc2-Tc1); // Temperature ratio
delt1 = Th2-Tc1; // Maximum temperature difference in degF
delt2 = Th1-Tc2; // Minimum temperature difference in degF
LMTD = (delt1-delt2)/log(delt1/delt2); // Log mean temperature difference
f = 0.99; // Correction factor as seen from figure
LMTDc = round(LMTD*f); // Corrected log mean temperature difference
printf("Log mean temperature difference is %d degF",LMTDc); |
5eab4775d80328432cc1e0f7316b82d8d41373f0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1205/CH3/EX3.3/S_3_3.sce | 8dc4bbd8049d0d279bcc0bde9b8441d4357283a1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 558 | sce | S_3_3.sce | clc;
// Given data
P=40; // N , Force applied to shift lever
alpha=25;// degree, angle made by force P with -ve X axis
alpha=alpha*%pi/180;// Conversion of angle into radian
x=0.2;//m , Hirizontal distance of A from B
y=0.6;//m, Vertical distance of A from B
Px=P*cos(theta);// N , horizontal component
Py=P*sin(theta);//N , Vertical component
M_B=-x*Px-y*Py//N.m , here negative signs are taken as each component creates moment clockwise
printf("The moment of force P about B is %.2f N.m . -ve sign shows its acting clockwise\n",M_B);
|
4d216e40805ff0dfcd77c9c4ef1ca4b88dcd9fa7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH14/EX14.15/Ex14_15.sce | a18cc385fa308be27866325a9552a6653254dc71 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 608 | sce | Ex14_15.sce | //Variable declaration:
//From example 14.14:
Di = 0.825/12.0 //%pipe inside diameter (ft)
L = 1.0 //%pipe length (ft)
Ui = 0.7492 //Overall heat coefficient (Btu/h.ft^2.°F)
Ts = 247.0 //Steam temperature (°F)
ta = 60.0 //Air temperature (°F)
//Calculation:
Ai = %pi*Di*L //Inside area of %pipe (ft^2)
Q = Ui*Ai*(Ts-ta) //Heat transfer rate (Btu/h)
//Result:
printf("The heat transfer rate is : %.1f Btu/h.",Q)
|
0f0160415c9d17bc3666f5eaf7ce1e63ca771b86 | 2f7b1fa044c246ffe96b7e6e7b96aa95f9031cdf | /Anul 2/Anul_2/Metode_Numerice/Laborator/MN rezolvari/MN_Lab/lab6/reprezentări grafice în plan.sce | 1757a7c533beb3b4065ae28ff2e810d667b99a93 | [] | no_license | stickyrst/automatica | 1f902091376c0f65c08a66721de3185a70f88d26 | 2ac48ae78f45b787724fa90c0e7acd8052e6725c | refs/heads/master | 2020-06-11T18:39:23.768638 | 2018-05-30T19:55:38 | 2018-05-30T19:55:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 172 | sce | reprezentări grafice în plan.sce | //reprezentări grafice în plan
function [y]=f(x)
y=abs(x)
endfunction
x=linspace(-10,10,100);
plot2d(x,f(x))
xtitle('Reprezentarea grafica a functiei modul')
|
968ae7ca635c8e0904de88bb1cf156127fa3c2ff | 449d555969bfd7befe906877abab098c6e63a0e8 | /172/CH2/EX2.2/ex2.sce | a41434acc608dbde3f92f4f0c5b266e9c548c3e4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 796 | sce | ex2.sce | //example 2
//average volume and density
clear
clc
Vliq=0.2 //volume of liquid in m^3
dliq=997 //density of liquid in kg/m^3
Vstone=0.12 //volume of stone in m^3
Vsand=0.15 //volume of sand in m^3
Vair=0.53 //vo;ume of air in m^3
mliq=Vliq*dliq //mass of liquid in kg
dstone=2750 //density of stone in kg/m^3
dsand=1500 //density of sand in kg/m^3
mstone=Vstone*dstone //volume of stone in m^3
msand=Vsand*dsand //volume of sand in m^3
Vtot=1 //total volume in m^3
dair=1.1 //density of air in kg/m^3
mair=Vair*dair //mass of air
mtot=mair+msand+mliq+mstone //total mass in kg
v=Vtot/mtot //specific volume in m^3/kg
d=1/v //overall density in kg/m^3
printf("\n hence,average specific volume is v=%.6f m^3/kg. \n",v )
printf("\n and overall density is d=%.0f kg/m^3. \n",d) |
42f17a5f7dc7bb598b04fc459fa4370e3acd7e15 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3636/CH6/EX6.1/Ex6_1.sce | 5f08ffc3d5a52787526de947dcef9fdb838df63d | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 254 | sce | Ex6_1.sce | clc;
clear;
ni=1.5*10^10 //in cm^-3
Nd=5*10^16 //doping density in cm^-3
V=0.55 //in V
Const=0.026 //constant for kT/e in V
//Calculation
Pn0=ni^2/Nd //in cm^-3
Pn=Pn0*exp(V/Const)
mprintf("minority carrier concentration= %1.2e cm^-3",Pn)
|
276aaa187d32c853f3a9be55fd7d33cd3651efa7 | 449d555969bfd7befe906877abab098c6e63a0e8 | /413/CH5/EX5.2/Example_5_2.sce | 44202a68efff62937b7ab76e94465fe3252deaac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 760 | sce | Example_5_2.sce | clc
clear
sumR2=0
sumR3=0
sumR4=0
function a=fun(x)
a=exp(-x.*x)
endfunction
A=[0.2 1.5]
M=(A(1,1)+A(1,2))/2
h=M-0.2
R1=(h)/2 *[fun(0.2)+fun(1.5)+2*fun(M)]
h1=h/2
for i=1:3
B(1,i)=0.2+i*h1
sumR2=fun(B(1,i))+sumR2
end
R2=h1/2 *[fun(0.2)+fun(1.5)+2*sumR2]
h2=h1/2
for i=1:7
C(1,i)=0.2+i*h2
sumR3=fun(C(1,i))+sumR3
end
R3=h2/2 *[fun(0.2)+fun(1.5)+2*sumR3]
h3=h2/2
for i=1:15
D(1,i)=0.2+i*h3
sumR4=fun(D(1,i))+sumR4
end
R4=h3/2 *[fun(0.2)+fun(1.5)+2*sumR4]
R5=R2+1/3*(R2-R1)
R6=R3+1/3*(R3-R2)
R7=R4+1/3*(R4-R3)
R8=R6+1/3*(R6-R5)
R9=R7+1/3*(R7-R6)
R10=R9+1/3*(R9-R8)
T1=[R1]
T2=[R2, R5]
T3=[R3, R6, R8]
T4=[R4,R7,R9,R10]
disp(T1)
disp(T2)
disp(T3)
disp(T4)
|
c3c9e28fcb09d03ee342b6079c47de70fc83fc01 | 449d555969bfd7befe906877abab098c6e63a0e8 | /629/CH6/EX6.1/example6_1.sce | 3cadf35873089d9cc4751eee6117643522dba9c1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 362 | sce | example6_1.sce | clear
clc
//Example 6.1 THRUST OF ROCKET
g=9.81; //[m/s^2]
m=0.04; //mass[kg]
D=0.01; //[m]
A=%pi*D^2/4 //area[m^2]
rho=0.5; //density[kg/m^3]
v=450; //[m/s]
//Sum of forces, Fz=-Fb-m.g
Mo=-rho*A*v^2 //momentum outflow[N]
Fz=Mo //[N]
Fb=-Fz-m*g //Force on beam[N]
printf("\n The force acting on the beam that supports the rocket, Fb = %.2f N.\n",Fb) |
f708737e3f495c95ef508b4903219b616d5a8f66 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1184/CH13/EX13.3/Ex13_3.sce | bfa195204598306504b0b7fbc7bcc1f056fdf750 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | Ex13_3.sce | //Example 13-3, Page No - 492
clear
clc
len = 165
attn_100ft = 5.3
pin = 100
attn_ft = 5.3/100
total_attn = attn_ft * len
pout = pin *0.1335
printf('The total attenuation of the cable is %.3f dB',total_attn)
printf('\n Output power is %.2f W',pout)
|
a8a534f7b833a7874481bc38f383fd19b52eb568 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1949/CH6/EX6.2/Ex6_2.sce | d58917af077c33e750e3e17ecb4fe2507cbf7332 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 547 | sce | Ex6_2.sce | //Chapter-6,Example 6_2,Page 6-26
clc()
//Given Values:
x=3.7*10^-3 //Susceptibility at T=300 K
T=300 //Temperature in kelvin
T1=250 //Temperature in kelvin
T2=600 //Temperature in kelvin
//Calculations:
C=x*T //Curie's law
ur1=C/T1 //Relative permeability at 250 K
ur2=C/T2 //Relative permeability at 600 K
printf('Relative Permeability at 250 K is =%.6f \n \n',ur1)
printf(' Relative Permeability at 600 K is =%.6f \n',ur2)
|
6c77d19eff5b1a70070a8f04da951c26bc28585b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1019/CH5/EX5.25/Example_5_25.sce | a3c4734800bb8ce00dda055ae2899165c732ae47 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 697 | sce | Example_5_25.sce | //Example 5.25
clear;
clc;
//Given
p1=10;//vapour pressure in mm Hg at temperature T1 K
p2=40;//vapour pressure in mm Hg at temperature T2 K
T1=358.95;//initial temperature in K
T2=392.45;//final temperature in K
Ts=325.75;//surrounding temperature in K
R=8.314;//gas constant in J K^-1 mol^-1
ps=1;//
//To determine the delHv,Tb,delSv
delHv=(T1*T2*R*log(p2/p1))/33.5;//integrated form of clausius clapeyron equation
Tb=((1/T1)-(19.147*log10(76)/delHv))^(-1);//boiling temperature in K
delSv=delHv/Tb;//entropy in vapourization in J K^-1 mol^-1
mprintf('(i) delHv = %f J mol^-1',delHv);
mprintf('\n (ii) Tb = %f K',Tb);
mprintf('\n (iii) delSv = %f J K^-1 mol^-1',delSv);
//end |
07619c4f06d7f3928ca1a5d31e8779953875db9b | 449d555969bfd7befe906877abab098c6e63a0e8 | /728/CH3/EX3.6/Ex3_6.sce | 3e2c5adf1ea21aab5c047d94bf6f01b9b71a0ce1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 399 | sce | Ex3_6.sce | //Caption:Determine point of attachment & length of stub.
//Exa 3.6
clc;
clear;
close;
Z_l=100;//in ohms
Z_o=600;//in ohms
f=100*10^6;//in Hz
wl=(3*10^8)/f;
//Position of stub is :
m=((Z_l*Z_o)/(Z_l-Z_o))^0.5;
pos={wl/(2*%pi)}*atan((Z_l/Z_o)^0.5);//in meters
l={wl/(2*%pi)}*{atan(m)};//in meters
disp(pos,"Position of stub (in meters) =");
disp(abs(l),"Length of stub (in meters) ="); |
cdd6edbc887c6564e73dccfa5838e61cded1802f | c0c48c5a363ac2c0bf21e72833d72a99771dc6ce | /Simulation_Codes/lab09_18i190002/ex1c.sce | 619e22b8b9f818e507c97737e9462fb591ebd4eb | [] | no_license | shubham1166/Operarions_Research_Projects | 3b6664b83d89b2a005b5194489bfd0d95cafe3d8 | 8f28eea93d9e4ff3d6a8e95160c3f9464ce2fc34 | refs/heads/main | 2023-03-14T02:48:42.359247 | 2021-03-03T05:51:28 | 2021-03-03T05:51:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,180 | sce | ex1c.sce | //Defining a function that will give the profit vector when the stock is n units for 500 days
clc,clear
exec('milk.sce',-1)
function profit=f(n)
to_be_sold=zeros(500,1)
//to_be_sold be the column vector that will tell us the amount of milk Akbar will decide to sell
//we want to know the expected profit of akbar if he packs 1000L
for (i=1:500)
to_be_sold(i)=to_be_sold(i)+n
end
profit=[]
//Will tell the profit of each day in Rupees
for i=1:500
if demand(i)>=to_be_sold(i)
x=38*to_be_sold(i)-32*to_be_sold(i)
else
x=38*demand(i)+30*(to_be_sold(i)-demand(i))-32*to_be_sold(i)
end
profit=[profit',x']'
end
endfunction
avg=[]
for i=950:10:1100
avg=[avg',[mean(f(i))]']'
end
clf
x=(950:10:1100)';
subplot(2,1,1)
plot(x,avg,'.r',xlabel('-----Stock Quantity---->'),ylabel('---Average Profit--->'),xtitle('Dotted Plot b/w Quantity and Profit'))
subplot(2,1,2)
plot(x,avg,'blue',xlabel('-----Stock Quantity---->'),ylabel('---Average Profit--->'),xtitle('Plot b/w Quantity and Profit'))
for i=1:16
printf('Quantity:%d Average Profit:%f\n',940+10*i,avg(i))
end
|
81e14327076423e043903578042ab51c53210d01 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2252/CH23/EX23.6/Ex23_6.sce | 7f6e6c72fd4b4317f2d52c1629f8aa0a2320d092 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,344 | sce | Ex23_6.sce |
function[r,theta]=rect2pol(A)
x=real(A)
y=imag(A)
r=sqrt(x^2+y^2)
theta=atand(y/x)
endfunction
function[r]=mag(A)
x=real(A)
y=imag(A)
r=sqrt(x^2+y^2)
endfunction
j=%i
R2_dash=.16
s=.03
X2=.4
Z2_dash=R2_dash/s+X2*j//effective rotor impedance referred to stator
R0=200
Xm=20*j
Z=1/(1/R0+1/Xm+1/Z2_dash)//equivalent impedance
Z1=.15+.4*j//stator impedance
Zin=Z1+Z//total input impedance
V=400//applied voltage
//calculating stator current
V1=V/sqrt(3)//per phase stator voltage
I1=V1/Zin
[I1 theta1]=rect2pol(I1)
mprintf("Stator current=%f A at %f power factor lagging\n",I1,cos(theta1*%pi/180))
//calculating rotor current
I1=V1/Zin
E1=V1-I1*Z1
Iw=E1/R0//per phase core loss component of no load current
Im=E1/Xm//per phase magnetising current
I0=Iw+Im//no load current
I2_dash=I1-I0
[I2_dash theta2]=rect2pol(I2_dash)
mprintf("Per phase rotor current=%f A lagging by %f degrees\n",I2_dash,-theta2)
//calculating mechanical output power
P=I2_dash^2*R2_dash*(1-s)/s//mechanical power output per phase
Pout=3*P
mprintf("Total mechanical power output=%f kW\n",Pout/1000)
//calculating input power drawn by the motor
Pin=3*V1*mag(I1)*cos(theta1*%pi/180)
mprintf("Total input power drawn by the motor=%f kW\n",Pin/1000)
//answers vary from the textbook due to round off error
|
ab902946a947265db7c05f635659d20f777a8d61 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2381/CH1/EX1.21/ex_21.sce | beef3e44823a12ed059262495f05d64e9d1e8256 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 491 | sce | ex_21.sce | //Example 21 // frequency ,energy and maximum velocity
clc;
clear;
close;
c=1;//N-m
m1=6;//gm
m2=2;//gm
mu=((m1*m2)/(m1+m2))*10^-3;//kg
fr=((1/(2*%pi))*sqrt(c/mu));//vibrations/sec
disp(fr,"frequency of oscillations is ,(vibrations/s)=")
td= 1+(1/3);//cm
e=((1/2)*c*(td*10^-2)^2);//joule
disp(e,"energy is,(joule)=")
y=((1/2)*m2*10^-3)+((1/2)*(1/3)^2*m1*10^-3);//
v1=sqrt((e/y));//m/sec
disp(v1,"maximum velocity of smaller mass is,(m/seconds)=")
//velocity is calculated wrong in the book
|
4afadafc428f2e955b4d10934559a99f3e1e6810 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1238/CH8/EX8.5/8_5.sce | d102e3bcd3b5ab29f6971250bb471f5f6ea252be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 897 | sce | 8_5.sce | //calculating required data//
//example 5//
clc
//clears the command window//;
clear
//clears//
LSB1=10;//change in output voltage due to LSB//
LSB2=2*LSB1;//change in output voltage due to second LSB//
LSB3=4*LSB1;//change in output voltage due to third LSB//
LSB4=8*LSB1;//change in output voltage due to fourth LSB//
LSB5=16*LSB1;//change in output voltage due to fifth LSB//
Vmax=LSB1+LSB2+LSB3+LSB4+LSB5;//maximum full scale output which occurs at input 11111//
//all the voltage units are in mV//
printf('maximum full scale output in mV at 1111=%d volt\n',Vmax);//displaying the result//
R=10;//resolution in mV since smallest increment due to change in LSB is 10mV//
printf('resolution=%d volt\n',R);//diaplaying the result//
S=10;//step size=resolution//
R1=S/Vmax*100;//percentage resolution//
printf('percentage resolution=%f percent',R1);//displaying the result//
|
3ec9f05356ea72f9e379cb19fd51093534d4d767 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2885/CH6/EX6.12/ex6_12.sce | 3873d7513ed15a36e215376b02ac0e4ff89044d3 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,328 | sce | ex6_12.sce |
//Solve the voltage divider accurately by applying thevenin's theorem
clear;
clc;
//soltion
//given
B=100; //dc beta
Rc=2*10^3;//ohm //resistor connected to collector
R1=10*10^3;//ohm //voltage divider resistor 1
R2=1*10^3;//ohm //voltage divider resistor 2
Re=200;//ohm //resistor connected to emitter
Vcc=10;//V //Voltage supply across the collector resistor
Vbe=0.3;//V //base to emitter voltage
Vth=Vcc*R2/(R1+R2);
Rth=R1*R2/(R1+R2);
printf("\nThevenin equivalent voltage Vth = %.5f V",Vth);
printf("\nThevenin equivalent resistance Rth = %.2f ohm",Rth);
Ib=(Vth-Vbe)/(Rth+(1+B)*Re);
Ic=B*Ib;
Ie=Ic+Ib;
Vce=Vcc-Ic*Rc-Ie*Re;
printf("\nThe accurate value of Ic = %.5f mA",Ic*10^3);
printf("\nThe accurate value of Vce = %.6f V",Vce);
Icp=3*10^-3; // Current calculated by voltage divider in previous example
Vcep=3.4; // Voltage calculated by voltage divider in previous example
Err_Ic=(Ic-Icp)*100/Ic;
Err_Vce=(Vce-Vcep)*100/Vce;
printf("\nError in Ic= %.1f percent\n",Err_Ic);
printf("Error in Vce= %.0f percent",Err_Vce);
// The errors and The accurate values are different
// because of the approaximation in Vth and Rth in book
// In Book Ic = 2.8436 mA and Vce = 3.73839 V
// Error in Ic = -5.5%
// Error in Vce = +9%
|
6e00f703e6fa3a96cff306af9a034267561f2311 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2015/CH1/EX1.1/1_1.sce | 23105c915e894085ed1a09d2f34c1a5181cd3dd1 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 377 | sce | 1_1.sce |
clc
//initialisation of variables
clear
t1=300 //K
t3=1900 //K
r=15
g=1.4
p1=1 //bar
cp=1.005
cv=0.718
R=0.287 //kj/kgk
//CALCULATIONS
t2=t1*r^(g-1)
p2=p1*r^(g)
p3=p2
t4=t3*0.143^(g-1)
p4=p3*(0.143)^(g)
qs=cp*(t3-t2)
qr1=cv*(t4-t1)
wo=qs-qr1
ef=wo/qs
v1=R*t1/p1
v2=v1/r
sv=v1-v2
cl=v2/(v1-v2)
mep=wo/sv
printf('mean effective pressure is %2f',mep)
|
c897a15bd2c2268ededbf4c783672b2cda7d84aa | 449d555969bfd7befe906877abab098c6e63a0e8 | /3020/CH11/EX11.6/ex11_6.sce | b37253aaa5cd2d7f2d35bda8022f80b3916c5284 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 464 | sce | ex11_6.sce | clc;
clear all;
lambda = 6328e-10; // Wavelength of the laser beam
p = 2.3e-3; // Energy emitted by the laser in Joule/second
p1 = 2.3e-3*60; // Energy emitted by the laser in Joule/minute
c = 3e8; // Velocity of light in air
h = 6.626e-34 ; // Planck's constant
v = c/lambda; // Frequency of photon emitted by laser beam
E = h*v; // Energy of a photon
N = p1/E; // The number of photons emitted
disp('photons/minute',N,'The number of photons emitted')
|
a7412fa4a5a7afe65065677e7a8cb87f6ee7293d | 449d555969bfd7befe906877abab098c6e63a0e8 | /1949/CH6/EX6.23/Ex6_23.sce | 08b42e3f42d5c5b8b2e6899e3e74f50dc2599b24 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 693 | sce | Ex6_23.sce | //Chapter-6,Example 6_23,Page 6-38
clc()
//Given Values:
l=1.2 //length of circuit in meter
u=7.3*10^-3 //permeability of silicon sheet
A=100 //cross sectional area in cm^2
N=150 //No of turns
B=0.3 //magmetic field in Wb/m^2
//Calculations:
//We know, B=u*H
H=B/u //Magnetic field strength
m=H*l //amp-turns in air gap
I1=m/N //Required current
printf('Current required to obtain given magnetic field is =%.3f Amperes \n \n',I1)
I=I1/A //Required current per unit area
printf(' Current required per unit area to obtain given magnetic field is =%.6f Amperes \n',I)
|
482deb565bb70cec355c77a275cbb64ead6e0fc6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3840/CH6/EX6.1/Ex6_1.sce | b9441fe3ec4c33a6c08feeb66cfe2a54c612ba4f | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 231 | sce | Ex6_1.sce | clear
//
//
//
//Variable declaration
alpha_e=10**-40 //polarisability(Fm**2)
N=3*10**28 //density of atoms
epsilon0=8.85*10**-12
//Calculation
epsilonr=(N*alpha_e/epsilon0)+1 //dielectric constant
//Result
|
71e6eeb5f7aaac1783b1fb966f8f63962d62aa33 | 449d555969bfd7befe906877abab098c6e63a0e8 | /416/CH20/EX20.2/example20_2.sce | cf9cf3567ceb929ec286957c4e8bb9ee682b8115 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,470 | sce | example20_2.sce | clc
clear
disp('example 20.2')
ee=5*10^16 //electrical energy requirement
eer=0.1 //energy requirement
i=5*10^6 //investement
n=20 //life time
ec=4.1 //energy cost
r=0.13 //interest rate
dr=r/((1+r)^(n)-1) //depreciation rate
dr=round(dr*10^5)/10^5
tfc=r+dr //total fixed cost
ace=i*tfc //annual cost
ace=round(ace/10^2)*10^2
eb=i*ec //electrical bill with present motor
teb=eb*(1-eer) //electrical bill with efficiency motor
tac=teb+ace //total annual cost with efficiency cost
as=eb-tac //annual saving
printf(" depreciation rate %.5f \n total fixed charge rate %f\n annual cost of efficiency motor Rs%eper year \n total electrical bill with present motors Rs%eper year \n total electrical bill with efficiency motor Rs.%e \n total annual cost if motors are replaced by high efficiency motors Rs%e per year \n annual saving Rs%d per year",dr,tfc,ace,eb,teb,tac,as)
disp('b')
pwf=r/(1-((1+r)^-n)) //present worth factor
pwf=round(pwf*10^5)/10^5
pwm=teb/pwf //present worth annual cost with existing motors
pwm=round(pwm/10^4)*10^4 //present worth with existing motors
pwem=eb/pwf //present worth with efficiency motor
pwem=round(pwem/10^4)*10^4
pwam=teb/pwf
pwam=round(pwam/10^4)*10^4
tpw=pwam+i //total persent worth
printf("present worth factor %.5f \n present worth of annual cost with existing motors Rs%e \n present worth of annual cost with new motor Rs%e \n total present worth %e per year",pwf,pwem,pwam,tpw) |
73db4ae5676fb8ffac9759fec0e9ae06a340d250 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1754/CH3/EX3.11/Exa3_11.sce | ed6d0a254370417555a0cae0a58838e108cafc5e | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 428 | sce | Exa3_11.sce | //Exa 3.11
clc;
clear;
close;
//Given data :
Po_dc=10;//in watt
Po_ac=3.5;//in watt
//Part (i) :
ETAcollector=Po_ac/Po_dc;//unitless
ETAcollector=ETAcollector*100;//collector efficiency in %
disp(ETAcollector,"Collector Efficiency(in %) : ");
//Part (ii)
disp(Po_dc,"Zero signal condition represents maximum power loss. Therefore, all the 10 W power is dissipated by it. Hence Powe Rating of transistor in Watt : ") |
1227000d1e9956ca9ad9bd0f5c5fe3541de47a60 | 449d555969bfd7befe906877abab098c6e63a0e8 | /662/CH13/EX13.15/ex_13_15.sce | de02f3405d9ed5f3a7994b6a4ec2359f4cd20932 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 507 | sce | ex_13_15.sce |
warning('off');
fstream1=mopen('output1.dat','w');
for k=65:90
k=ascii(k);
// printf("%c",k);
mfprintf(fstream1,'%c',k );
end
mclose(fp);
//Read the 11th character and last character of the file using mseek function
fstream1=mopen('output1.dat','r');
mseek(10,fstream1,'set');
ch=mfscanf(fstream1,"%c");
printf("11th chatracter in the file is %c\n",ch);
mseek(-1,fstream1,'end');
ch=mfscanf(fstream1,"%c");
printf("Last chatracter in the file is %c\n",ch);
mclose(fstream1); |
9d4e489017f62c21bffd7ad2ca1d77ac590c5db9 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/tdcs/mineInit.sci | e10147adef817a9eb513ca2a42b6dd567009c0ff | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 4,095 | sci | mineInit.sci | function []=mineInit()
// Macro qui initialise les donnees du
// td3
//!
// Copyright INRIA
n1=30
n2=40;
te=n2/2;
xe=n1/2;
k0=1;
kc=0.01;
[n1,n2,te,xe,k0,kc]=resume(...
n1,n2,te,xe,k0,kc);
function [cout,feed]=mine(n1,n2,uvect)
//[cout,feed]=mine(n1,n2,uvect)
// extraction optimale d'un minerai d'une mine a ciel ouvert
// en avancant progressivement (k=1,2,...,n2) et en
// prelevant a l'abcisse k+1 la tranche de profondeur x(k+1)
// par une commande u a partir de la profondeur x(k)
// a l'abcisse k.
//
// la resolution du probleme se fait par programmation dynamique
// en calculant la commande optimale maximisant le critere :
//
// -- n2-1
// \
// / f(x(k),k) + V_F(x,n2)
// -- k=1
// avec : x(k+1)=x(k) + u
// x(k) est la profondeur de la mine a l'abcisse k (x=1
// est le niveau du sol)
// la fonction gain instantane f(i,k) represente le benefice
// si on creuse la profondeur i a l'abcisse k
// V_F(i,n2) est un cout final destine a forcer l'etat final
// a valoir 1 (pour sortir de la mine ...)
// V_F(i,n2) vaut -10000 en tout les points i\ne1 et 0
// pour i=1
//
// le programme mine necessite de connaitre
// n1 : l'etat est discretise en n1 points
// 1 c'est l'air
// 2:n1+1 du sol au fond
// n1+2 zone interdite
// n2 : nombre d'etapes
// uvect : vecteur ligne des valeurs discretes que peut
// prendre u (3 valeurs, on monte, on descend ou on avance)
// et le programme mine retourne alors deux matrices
// cout(n1,n2) : valeurs de la fonction de Bellman
// feed(n1,n2) : valeurs de la commande a appliquer
// lorsque l'etat varie de 1 a n1 et
// l'etape de 1 a n2.
// n1 : l'etat est discretise en n1 points
// on rajoute dans le calcul deux couches fictive
// en 1 l'air en n1+2 le fond de la mine
// 1 c'est l'air
// 2:n1+1 du sol au fond
// n1+2 zone interdite
//!
usize=prod(size(uvect))
xgr=1:(n1+2)
// tableau ou l'on stocke la fonction de Bellman
cout=0*ones(n1+2,n2);
// tableau ou l'on stocke le feedback u(x,t)
feed=0*ones(n1,n2);
// calul de la fonction de Bellman au temps final
penal=10000;
// Le cout final est le cout au point de sortie de la zone d'extraction
// on veut evidement que ce point de sortie soit le sol
// le cout est donc 0 au niveau du sol et -inf ailleurs
cout(:,n2)=-penal*ones(n1+2,1);
cout(2,n2)=0;
// calcul retrograde de la fonction de Bellman et
// du controle optimal au temps temp par l'equation de Bellman
for temp=n2:-1:2,
loc=list();
for i=1:usize,
newx=mini(maxi(xgr+uvect(i)*ones(xgr),1*ones(xgr)),(n1+2)*ones(xgr)),
loc(i)=cout(newx,temp)+ff_o(xgr,temp-1),
end;
[mm,kk]=maxi(loc),
cout(xgr,temp-1)=mm;
cout(1,temp-1)=-penal;
cout(n1+2,temp-1)=-penal;
feed(xgr,temp-1)=uvect(kk)';
end
function [y]=ff_o(x,t)
//[y]=ff_o(x,t)
// gain instantane apparaissant dans le critere du
// programme mine.
//
// pour des raisons techniques, l'argument x doit
// etre un vecteur colonne et donc egalement la sortie y.
// en sortie y=[ ff_0(x(1),t),...ff_o(x(n),t)];
//!
xxloc=ones(x);
y=k0*(1-(t-te)**2/(n2**2))*xxloc - (x-xe*xxloc)**2/(n1**2) -kc*(x-1*xxloc)
y=y';
y(1:2)=[0;0]
function []=showcost(n1,n2)
//[]=showcost(n1,n2)
// Montre en 3d la fonction de gain instantanee (ff)
// x: profondeur (n1)
// y: abscisse (n2)
// en z : valeur de ff_o(x,t)
//!
[lhs,rhs]=argn(0)
m=[];
for i=1:n2,m=[m,ff_o(1:n1,i)],end
contour(1:n2,1:n1,m',10,0,0,' ',[2,2,0])
function []=trajopt(feed)
//[]=trajopt(feed)
// feed est la matrice de feedback calculee par mine
// trajopt calcule et dessine la trajectoire et le controle
// optimaux pour un point de depart (1,1)
//!
[n1,n2]=size(feed)
xopt=0*ones(1,n2)
uopt=0*ones(1,n2+1)
xopt(1)=2;
for i=2:(n2+1),xopt(i)=feed(xopt(i-1),i-1)+xopt(i-1),
uopt(i-1)=feed(xopt(i-1),i-1),end
plot2d2("gnn",[1:(n2+1)]',[-xopt]',[2],"111",...
"trajectoire optimale",...
[1,-n1,n2+1,2]);
plot2d2("gnn",[1:(n2)]',uopt(1:n2)',[1,-4],"111",...
"commande optimale",...
[1,-n1,n2+1,2]);
|
a6232add803576670af2c6ea5dc1671c40e22d11 | 2e676e3b1cebfbb9d20f9b935ceacd507c57d36a | /Octave/octave-4.2.1/share/octave/4.2.1/etc/tests/fixed/bug-31371.tst | bc7b0d2626ce6c7b41a9300b777e467e15d4db2b | [] | no_license | vohrahul/ML-ang-coursera | 239469e763b290aa178b7aa8a86eda08e4e7f4be | 4c24fd2ecfb9f3de7df15e3a9f75627f782f9915 | refs/heads/master | 2022-12-28T03:45:54.810173 | 2020-10-16T12:33:25 | 2020-10-16T12:33:25 | 304,620,441 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,183 | tst | bug-31371.tst | %!test
%! % Work around MATLAB bug where f(x)(y) is invalid syntax
%! % (This bug does not apply to Octave)
%!
%! C = @(fcn,x) fcn(x);
%! C2 = @(fcn,x,y) fcn(x,y);
%!
%! % Church Booleans
%! T = @(t,f) t;
%! F = @(t,f) f;
%!
%! % Church Numerals
%! Zero = @(fcn,x) x;
%! One = @(fcn,x) fcn(x);
%! Two = @(fcn,x) fcn(fcn(x));
%! Three = @(fcn,x) fcn(fcn(fcn(x)));
%! Four = @(fcn,x) fcn(fcn(fcn(fcn(x))));
%!
%! % Arithmetic Operations
%! Inc = @(a) @(f,x) f(a(f,x)); % Increment
%! Add = @(a,b) @(f,x) a(f,b(f,x));
%! Mult = @(a,b) @(f,x) a(@(x) b(f,x),x);
%! Dec = @(a) @(f,x) C(a(@(g) @(h) h(g(f)), @(u) x), @(u) u); % Decrement
%! Sub = @(a,b) b(Dec, a);
%!
%! % Renderer - Convert church numeral to "real" number
%! Render = @(n) n(@(n) n+1,0);
%!
%! % Predicates
%! Iszero = @(n) n(@(x) F, T);
%!
%! % Y combinator implements recursion
%! Ycomb = @(f) C(@(g) f(@(x) C(g(g), x)), ...
%! @(g) f(@(x) C(g(g), x)));
%!
%! Factorial = Ycomb(@(f) @(n) C(C2(Iszero(n), ...
%! @(d) One, @(d) Mult(n, f(Dec(n)))),0));
%!
%! assert (Render (Factorial (Two)), 2);
%! assert (Render (Factorial (Three)), 6);
%! assert (Render (Factorial (Four)), 24);
|
92a02dee2d77c366dad297f0cdf7a7a8e5795180 | cab1992a709a3eb977bef46f17eadab0c7bbbc5f | /modeling_simulation/ofc_reaching_task.sce | 22df6f4afe5a0b5c5ff23457058fdd424b1f7773 | [] | no_license | andreinakagawa/neuroscience | 80ab70cfc2c7df7d7891373cc9c889b4b8f83dd6 | 681125f0e1248269665749ed8bf17d5cfe6c2fda | refs/heads/master | 2021-06-07T09:37:51.810764 | 2017-10-05T11:32:03 | 2017-10-05T11:32:03 | 15,914,740 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 4,619 | sce | ofc_reaching_task.sce | //------------------------------------------------------------------------------
// FEDERAL UNIVERSITY OF UBERLANDIA
// Faculty of Electrical Engineering
// Biomedical Engineering Lab
// Uberlandia, Brazil
//------------------------------------------------------------------------------
// Author: Andrei Nakagawa, MSc
// Contact: andrei.ufu@gmail.com
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
clear;
clc;
//------------------------------------------------------------------------------
//Kalman filter
function [xplus,pplus] = kalman(F,G,H,Q,R,xk,pk,yk,uk)
//time update (prediction)
xminus = F*xk + G*uk;
pminus = F*pk*F' + G*Q*G';
//measurement update (correction)
measureError = yk - (H*xminus);
kalmanGain = pminus*H' * inv(H*pminus*H' + R);
//state estimate
xplus = xminus + kalmanGain * measureError;
//covariance
pplus = pminus - kalmanGain*H*pminus;
endfunction
//------------------------------------------------------------------------------
//States
//Position and velocity in X
//Position and velocity in Y
//Inputs
//Force in X and Y
function [Ac,Bc,Cc] = pointMassModel(m)
Ac = [0 1 0 0; 0 0 0 0; 0 0 0 1; 0 0 0 0];
Bc = [0 0; 1/m 0; 0 0; 0 1/m];
Cc = eye(size(Ac,1),size(Ac,2))
endfunction
//------------------------------------------------------------------------------
[A,B,C] = pointMassModel(1);
//------------------------------------------------------------------------------
//Simulation parameters
t0=0;
tf=3;
dt = 0.01;
t = t0:dt:tf;
//Continuous-time system
contSys = syslin('c',A,B,C);
//Discrete-time system
discSys = dscr(contSys,dt);
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//Weight matrices
Qd=diag([0.1,0.1,0.1,0.1]);
Rd=diag([0.01,0.01]);
//Discrete riccati
Ad = discSys(2); //A
Bd = discSys(3); //B
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
//Differential Riccati Equation - Discrete-time
//Calculating the solution to riccati for each instant in time
//and then finding the time-varying gain for each time step
//------------------------------------------------------------------------------
Sdisc = [];
Kdisc = [];
S0 = diag([500,0,120,0]); //Estimate for the Riccati matrix
for k=1:length(t)
//Calculating the time-varying gain
K = inv(Bd'*S0*Bd + Rd)*(Bd'*S0*Ad);
//New riccati solution
S0 = Ad'*S0*Ad - Ad'*S0*Bd*((Rd + Bd'*S0*Bd)^-1)*Bd'*S0*Ad + Qd;
//Stores the riccati solution
Sdisc = [S0 Sdisc];
//Stores the gain
Kdisc = [Kdisc K];
end
//------------------------------------------------------------------------------
cont = 1;
//Desired setpoints or reference trajectory
xd = [0;0;5;0];
xint = []; //stores all the states during integration
uint = []; //stores all the inputs during integration
costQ = [0]; //cost of states
costR = [0]; //cost of control
x0 = [0;0;0;0]; //temporary variable for storing states
u0 = [0;0];
x = x0;
xint = [xint x0];
uint = [uint u0];
q = zeros(2,2);
r = eye(4,4);
x00=x0;
p0 = eye(4,4);
xp = [];
yk = [x0];
yn = [x0];
xpp=x0;
for k=1:length(t)-1
//Calculating the input
u = -Kdisc(:,cont:cont+3) * (xpp-xd);
//Calculating the new states
x = Ad*x + Bd*u;
//State estimation
ykk = discSys.C * x;
ynn = ykk + rand(1,'normal')/10;
[xpp,pp] = kalman(discSys.A,discSys.B,discSys.C,q,r,x00,p0,ynn,u);
yk = [yk ykk];
yn = [yn ynn];
xp = [xp xpp];
x00 = xpp;
p0 = pp;
//Storing the new states
xint = [xint x];
//Storing the new inputs
uint = [uint u];
//Stores the cost in this step
costQ = [costQ (x-xd)'*Qd*(x-xd)];
//Stores the cost in this step
costR = [costR u'*Rd*u];
//Increments the counter to loop through the gain matrix
cont = cont + 4;
end
//------------------------------------------------------------------------------
figure();
plot(xint(1,:),xint(3,:),'k');
plot(xint(1,$),xint(3,$),'k.');
plot(x0(1),x0(3),'b.');
plot(xd(1),xd(3),'r.');
ax=gca();
ax.data_bounds=[-1 -5; 1 5];
figure();
plot(t,xint(2,:),'r');
plot(t,xint(4,:),'g');
plot(t,uint(1,:),'k');
plot(t,uint(2,:),'k');
figure();
plot(t,costQ,'r');
plot(t,costR,'b');
figure();
plot(t,yn(3,:),'g');
plot(t,yk(3,:),'b');
plot(t,xint(3,:),'r.');
//------------------------------------------------------------------------------
|
fb100cea7b6016a438658af2f67e96ac6ffca542 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1427/CH24/EX24.15/24_15.sce | b7b180215d45c6bacac065b89d42a5a3cb5df5b4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 404 | sce | 24_15.sce | //ques-24.15
//Calculating amount of a substance extracted by ether
clc
w1=16;//weight of solute in 1L aqueous solution (in g)
w2=12;//amount extracted by 100 mL ether (in g)
w3=w1-w2;//amount left in 1L (in g)
K=(w2/100)/(w3/1000);//partition coefficient
//K = (x/100)/((4-x)/1000)
x=(w3*K)/(10*w3);
printf("The amount of substance extracted by 100mL ether during 2nd extraction is %d g.",x);
|
45c3ecd477c7624f48e7058fca25e47b4f6de63f | a32ca14eb7efc53e65f80974ac55e96683ea6c24 | /TP1/tp1.sce | 3b0d1b66c442ac08501c4cec1c11c27cb7819b61 | [] | no_license | GHLH/RO05_TP | 3187b861713a2314501a56838b698d49445c9199 | 3eaf94b7114babf849df70e094855929071b8e3b | refs/heads/master | 2021-07-10T21:04:33.226067 | 2017-10-06T21:18:47 | 2017-10-06T21:18:47 | 105,623,668 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 841 | sce | tp1.sce | N = 1000; //le nombre des réalisations
T = 1; // le temps de l'exercice de l'option
h = 0.05;
S0 = 1;
mu = 0.05;
sigma = 0.3;
M = T / h; //nombre de subdivision de l'intervalle [0,T]
t = 0; //la valeur de l'actif aux instants
somme = 0; //la somme de S(t)
Nb = N / M; //nombre de réalisation dans chaque intervalle [0,T]
for i = 1:M
for j = 1:Nb
U = grand(1,1,"unf",0,1); // la fonction grand(x,y,"unf",a,b) est pour générer une matrice avec la ligne x et la colonne y des nombres au hasard entre [a,b] qui suit une loi uniforme.
Z = (U - Nb / 2) / sqrt(Nb / 12); // selon le théorème de la limite Centrale, on trouve Z suit une loi normale N(0,1)
St = S0 * exp((mu - 1/2 * sigma^2) * t + sigma * sqrt(t) * Z);
somme = somme + St;
end
t = (i + 1) * h;
end
moyenne = somme / N;
moyenne
|
112101ba2c898158540c8995bc30adacc9920208 | 463377b6374a24bbe111707a34e24949f3bd2543 | /iv.sci | a819a4e57ae264e355b630cabfe900f495affcc7 | [] | no_license | solothinker/Scilab-Identification | 3a46c0f3b8b1a7430f8a799be5e1310e2723b535 | cdad0d7292c31c29d377b640f6966a7c3bb81bb9 | refs/heads/master | 2022-01-05T12:39:07.410803 | 2019-06-15T02:18:13 | 2019-06-15T02:18:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,359 | sci | iv.sci | function varargout = iv(varargin)
[lhs , rhs] = argn(0);
if ( rhs < 2 || rhs > 3) then
errmsg = msprintf(gettext("%s: Unexpected number of input arguments : %d provided while should be 2 or 3"), "iv", rhs);
error(errmsg)
end
plantData = varargin(1)
if typeof(plantData) == 'iddata' then
Ts = plantData.Ts;unit = plantData.TimeUnit
plantData = [plantData.OutputData plantData.InputData]
elseif typeof(plantData) == 'constant' then
Ts = 1;unit = 'seconds'
end
if ((~size(plantData,2)==2) & (~size(plantData,1)==2)) then
errmsg = msprintf(gettext("%s: input and output data matrix should be of size (number of data)*2"), "iv");
error(errmsg);
end
if (~isreal(plantData)) then
errmsg = msprintf(gettext("%s: input and output data matrix should be a real matrix"), "arx");
error(errmsg);
end
n = varargin(2)
if (size(n,"*")<2| size(n,"*")>3) then
errmsg = msprintf(gettext("%s: The order and delay matrix [na nb nk] should be of size [2 or 3]"), "iv");
error(errmsg);
end
if (size(find(n<0),"*") | size(find(((n-floor(n))<%eps)== %f))) then
errmsg = msprintf(gettext("%s: values of order and delay matrix [na nb nk] should be nonnegative integer number "), "iv");
error(errmsg);
end
na = n(1);nb = n(2)
if size(n,'*') == 2 then
nk = 1
elseif size(n,'*') == 3 then
nk = n(3)
end
yData = plantData(:,1)
uData = plantData(:,2)
noOfSample = size(plantData,'r')
nb1 = nb + nk - 1
n = max(na, nb1)
if rhs == 3 then
if typeof(varargin(3)) <> 'constant' then
errmsg = msprintf(gettext("%s: Incompatible last input argument. "), "iv");
error(errmsg)
elseif size(varargin(3),'r') <> size(uData,'r') then
errmsg = msprintf(gettext("%s: number of samples of output must be equal to the dimensions of plant data "), "iv");
error(errmsg);
end
x = varargin(3)
elseif rhs == 2
arxModel = arx(plantData,[na nb nk])
x = sim(uData,arxModel)
end
phif = zeros(noOfSample,na+nb)
psif = zeros(noOfSample,na+nb)
// arranging samples of y matrix
for ii = 1:na
phif(ii+1:ii+noOfSample,ii) = yData
psif(ii+1:ii+noOfSample,ii) = x
end
// arranging samples of u matrix
for ii = 1:nb
phif(ii+nk:ii+noOfSample+nk-1,ii+na) = uData
psif(ii+nk:ii+noOfSample+nk-1,ii+na) = uData
end
lhs = psif'*phif
lhsinv = pinv(lhs)
//pause
theta = lhsinv * (psif)' * [yData;zeros(n,1)]
ypred = (phif * theta)
ypred = ypred(1:size(yData,'r'))
e = yData - ypred
sigma2 = norm(e)^2/(size(yData,'r') - na - nb)
vcov = sigma2 * pinv((phif)' * phif)
t = idpoly([1; -theta(1:na)],[zeros(nk,1); theta(na+1:$)],1,1,1,1)
// estimating the other parameters
[temp1,temp2,temp3] = predict(z,t)
[temp11,temp22,temp33] = pe(z,t)
estData = calModelPara(temp1,temp11,na+nb)
//pause
t.Report.Fit.MSE = estData.MSE
t.Report.Fit.FPE = estData.FPE
t.Report.Fit.FitPer = estData.FitPer
t.Report.Fit.AIC = estData.AIC
t.Report.Fit.AICc = estData.AICc
t.Report.Fit.nAIC = estData.nAIC
t.Report.Fit.BIC = estData.BIC
t.TimeUnit = unit
//sys = t
varargout(1) = t
endfunction
|
3f6f151be76b38cea8602f5cc15ac64741a2480b | 449d555969bfd7befe906877abab098c6e63a0e8 | /1268/CH9/EX9.4/9_4.sce | f7b1ab67a16d8f3348d984f5cae3127b4b632935 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | 9_4.sce | clc;
disp("Example 9.4")
reading=9.7e-3 // of manometer in m
g=9.81
densitym=13600 /// in kg/m^3
density=1200 // of water in kg/m^3
delP=g*reading*(densitym-density)
U=84/60
b=0.333
c=U*((density*(1-b^4)/(2*delP))^0.5)
disp(c,"The venturi coefficient is ")
|
58702e1717b53e125609f65b6dc4ef3cbc347765 | c557cd21994aaa23ea4fe68fa779dd8b3aac0381 | /test/multiroot.tst | df0a52340753cfe6bba8167215c7901e469fbaa4 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | dougsong/reposurgeon | 394001c0da4c3503bc8bae14935808ffd6f45657 | ee63ba2b0786fa1b79dd232bf3d4c2fe9c22104b | refs/heads/master | 2023-03-09T15:22:45.041046 | 2023-02-25T08:33:06 | 2023-02-25T08:33:06 | 280,299,498 | 1 | 0 | NOASSERTION | 2023-02-25T08:33:08 | 2020-07-17T01:45:32 | Go | UTF-8 | Scilab | false | false | 182 | tst | multiroot.tst | ## Test unite of multiple copies of a repo mapped to branches
read <bzr.fi
path ^(.*) rename foo/\1
rename foo
read <bzr.fi
path ^(.*) rename bar/\1
rename bar
unite foo bar
write -
|
596e167ba0ed804bf59c5460209da81895d4f522 | 449d555969bfd7befe906877abab098c6e63a0e8 | /593/CH4/EX4.2/ex4_2.sce | e1857709ff560762821ba7348414588823e268c4 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,409 | sce | ex4_2.sce | clear;
//clc();
// Example 4.2
// Page: 77
printf("Example-4.2 Page no.-77\n\n");
//***Data***//
// let we denote graphite by 'g' and diamond by 'd'
// Gibb's free energies of graphite and diamond are given by
g_g = 0.00;//[kJ/mol]
g_d = 2.90;//[kJ/mol]
// Specific volumes of graphite and diamond are given by
v_g = 5.31*10^(-1);//[kJ/(mol*kbar)]
v_d = 3.42*10^(-1);//[kJ/(mol*kbar)]
// Now from the equation 4.32 ( page 74) given in the book, we have
// (dg/dP) = v , at constant temperature
// where 'v' is specific volume
// let us denote (dg/dP) by 'D' ,so
D_g = v_g;//[J/(mol*Pa)] For graphite
D_d = v_d;//[J/(mol*Pa)] For diamond
// Now we can take our plot from P = 0( =1 ), however, total pressure is 1 atm.
// If we consider specific volumes of the given species to be constant with changing the pressure then g-P curve will be a straight line
// So the equation of the line for graphite is
// g = D_g*P + g_g
// and that for diamond
// g = D_d*P + g_d
P = [0:1:30]';
plot2d(P,[ D_d*P+g_d D_g*P+g_g ],style=[color("darkgreen"),color("red")]);
xlabel("Pressure, P, kbar");
ylabel("Gibb''s free energy per mol, g, kJ/mol");
printf(" Gibb''s free energy-pressure diagram for graphite-diamond system at 25 degC is as shown in the graphic window. ");
hl=legend(['Diamond, slope = 0.342 (kJ/mol)/kbar';'Graphite, slope = 0.532 (kJ/mol)/kbar']);
|
dec8edbd4ffa35d18d8606110fbc5a1b182c3bd7 | 7f053b29173fd886cfb3520199a442fe76b4f8bb | /Sala 18.sce | 6c0d42f70b619d174b80015b4c12a80965cc7af5 | [] | no_license | erickcampos50/HVAC | 26052b9720b79400c15afb9ea5fdf1c17c00da78 | c9544ebb4911461e3c996bbfd6278c47946991dc | refs/heads/master | 2019-01-02T01:46:06.365422 | 2015-02-02T19:30:33 | 2015-02-02T19:30:33 | 29,926,761 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 8,204 | sce | Sala 18.sce | clear
//Carregando arquivos contendo funcoes e tabelas
exec('tabelas.sce',-1) //O parametro -1 suprime informacoes na tela
exec('iluminacao.sce',-1)
exec('paredes.sce',-1)
exec('radiacaof.sce',-1)
exec('ocupacao.sce',-1)
exec('janelas.sce',-1)
//Lista Valores de entrada
entradas = [23.0 0.4 7 18 1 52 7 18 13 6.5 0 14 2 3 17 2248.8]
//[t_const,um_rel,hor_fun_i,hor_fun_f,rts_ilum_sel,p,hor_ocup_i,hor_ocup_f,pma,pba, fresta,porta, rts,U,non_solar(1)]
//TEMPERATURA DESEJADA PARA O AMBIENTE
t_const = entradas(1) //Temperatura de bulbo seco
um_rel = entradas(2) //Umidade relativa
//Condicoes Internas recomendadas para o verao. NBR 6401-tab1
////%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%//
////.........................ILUMINACAO.....................
//Horario de funcionamento
hor_fun_i = entradas(3) //Horario de funcionamento inicio
hor_fun_f = entradas(4) //Horario de funcionamento fim
q_ilum_pot = entradas(16) //Potencia das lampadas e equipamentos eletronicos equivalentes ligados no mesmo horario. Lampadas = 40W
rts_ilum_sel = entradas(5) //indice pra selecao do rts mais apropriado (a principio apenas valores da tabela medium)
[q_ilum_total,q_ilum_pico]=ilum(hor_fun_i,hor_fun_f,q_ilum_pot,rts_ilum_sel) //CHAMANDO FUNCAO ILUMINACAO
////==========================================================================//
////Surfaces that face west
////have a positive surface azimuth; those that face east have a negative
////surface azimuth.
//surf_azim = 60
//
////Inclinação da superficie em relacao a horizontal,quando a superficie esta na vertical surf = 90, na horizontal surf = 0 e para surperficies apontando para o solo surf >90
////%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%//
////.........................PAREDES COM INSOLACAO.....................
alpha(1)=strtod(alpha_tab(12,2))//Não consta no vetor "entradas"
w = [-55.00 90.00 1.00 2.41 28.80 0.00 strtod(alpha_tab(12,2))
35.00 90.00 1.00 2.41 12.92 4.48 strtod(alpha_tab(12,2))
]
//]Secretaria da FPF
//hall externo
//orient. Interna
//estacionamento
q_cond_pico_total = 0 //Deve permanecer fora do loop
for i = 1:size(w,1)
[q_cond_total(1:24,i),q_cond_pico(1:2,i),ang(i,1:24)] = parede(w(i,1),w(i,2),w(i,3),w(i,4),w(i,5),alpha(1))
q_cond_pico_total = q_cond_total(1:24,i)+q_cond_pico_total//Como existe uma sequencia com valores de pico em momentos diferentes, essa variavel soma todos os valores para descobrir o pico devido a sobreposicao
[q_cond_pico_total_valor(1,1),q_cond_pico_total_valor(2,1)] = max(q_cond_pico_total)
end
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
//CALCULO PARA OS FRAMES DAS JANELAS
//O metodo de calculo dos frames é mais facilmente realizando quando considerado um processo como o que ocorre nas predes
//alpha(1)=0.27 //Emitancia para aluminio http://wiki.naturalfrequency.com/wiki/Absorptance_and_Emittance
//cts(1)=7//Adequar
//U(1) = 3.18 //Ashrae 15.8 Tab4
//f(1,:) = [-20,90,alpha(1),cts(1),U(1),3.492]//Adequar
//
//alpha(2)=0.27
//cts(2)=7//Adequar
//U(2) = 3.18
//f(2,:) = [70,90,alpha(2),cts(2),U(2),2.152]//Adequar
//
//alpha(3)=0.27
//cts(3)=7//Adequar
//U(3) = 3.18
//f(3,:) = [160,90,alpha(3),cts(3),U(3),3.492]//Adequar
//
//for i = 1:size(f,1)
//q_frame_pico_total = 0 //Deve permanecer dentro do loop
//[q_frame_total(1:24,i),q_frame_pico(1:2,i)] = parede(f(i,1),f(i,2),f(i,3),f(i,4),f(i,5),f(i,6))
//q_frame_pico_total = q_frame_total(1:24,i)+q_frame_pico_total//Como existe uma sequencia com valores de pico em momentos diferentes, essa variavel soma todos os valores para descobrir o pico devido a sobreposicao
//[q_frame_pico_total_valor(1,1),q_frame_pico_total_valor(2,1)] = max(q_frame_pico_total)
//end
//
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
//CALCULO DEVIDO A OCUPACAO
p = entradas(6) //Ocupação em horario de pico ou ocupacao media
//Horario de ocupacao do amiente
hor_ocup_i = entradas(7) //Horario de funcionamento inicio
hor_ocup_f = entradas(8) //Horario de funcionamento fim
q_ocup_total = ocupacao(hor_ocup_i,hor_ocup_f,p)
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
//CALCULO DEVIDO A INFILTRACAO
//Considerando o método das frestas NBR6401 tab8
pma = entradas(9) //Porta mal ajustada m³/h por metro linear de fresta NBR 6401
pba = entradas(10) //Porta bem ajustada m³/h
fresta = entradas(11) //Estimativa de portas e principalmente janelas, que estão mal ajustadas
porta = entradas(12)//Parcela correspondente a abertura e fechamento das portas m3/h/pessoa
//A alternativa a esse método é utilizar o valor padrao de 1.5 renovacoes/hora NBR 6401. Utilizar essa opcao quando houver uma maior previsibilidade do fluxo de pessoas
//Para intervalos conhecidos de porta aberta usar 1350 m3/h NBR 6401
vazao_infilt = (pma*fresta +porta*p)/3600 //Convertendo para m3/s para compatibilizar unidades
//O valor da vazao de infiltracao pode ser utilizado para reduzir as perdas parametrizando a vazao do ar condicionado para ser >= vazao_inilt gerando uma pressao positiva
ar_calesp = 1006 //Calor especifico ar J/(KG*K)
ar_umid_calesp = 1084 //Calor especifico do ar umido
ar_dens = 1.2 //Densidade do ar kg/m3
//Ate que possa ser incorporada uma calculadora para esses parametros em tempo real, valores tabelados serao utilizados
umid_abs_ext = 0.0204 //Umidade absoluta para temperatura de 31.4 e umid relat 72% kg/kg
umid_abs_int = 0.007123 //Umidade absoluta para temperatura 23 e umid relat 40% kg/kg
h_ar = 40872 //Entalpia do ar para T=23 e umid rel a 40% J/kg
//Valores calculados a partir de http://www.sugartech.co.za/psychro/
for i = 1:24
q_infilt(i,1) = ar_dens*(ar_calesp + ar_umid_calesp*(umid_abs_ext-umid_abs_int))*vazao_infilt*(temp_amb(i,1)-t_const)
q_infilt(i,2) = ar_dens*(umid_abs_ext-umid_abs_int)*vazao_infilt*h_ar
end
q_infilt_total = q_infilt(:,1)+q_infilt(:,2)
[q_infilt_pico(1,1),q_infilt_pico(1,2)] = max(q_infilt_total)
//Valores de referencia para ambiente externo T=31.4 UmRel=52% Vlroes para 14:00 março para GV
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
//---------------------CALCULO JANELAS ------------------------------
//Para gerar um fator de seguranca no projeto, apesar da janela ser revestida por pelicula ela foi considerada totalmente transparente e mantido o SHGC elevado
rts(1)=entradas(13)
U(1) = entradas(14)
non_solar(1) = entradas(15)
j = w
//j(1,:) = [60,90,rts(1),non_solar(1),U(1),6.92]
//rts(2)=2
////
//U(2) = 1.05
//non_solar(2) = 17
//j(2,:) = [150,90,rts(2),non_solar(2),U(2),20.736]
//rts(3)=2
////
q_wind_pico_total = 0 //Deve permanecer fora do loop
for i = 1:size(j,1)
[q_wind_total(1:24,i),q_wind_pico(1:2,i)] = janela(j(i,1),j(i,2),rts(1),non_solar(1),U(1),j(i,6))
q_wind_pico_total = q_wind_total(1:24,i)+q_wind_pico_total//Como existe uma sequencia com valores de pico em momentos diferentes, essa variavel soma todos os valores para descobrir o pico devido a sobreposicao
[q_wind_pico_total_valor(1,1),q_wind_pico_total_valor(2,1)] = max(real(q_wind_pico_total))
end
//Preencher a tabela SHGC de acordo com o material mais adequado
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
//---------------------RESULTADO FINAL ------------------------------
q_total = q_infilt_total + q_ilum_total + q_cond_pico_total + q_wind_pico_total + q_ocup_total
q_total_btu = q_total*3.412141633//Carga em BTU/hr
plot(q_total*3.412141633,'r');plot(q_wind_pico_total*3.412141633,'g');plot(q_infilt_total*3.412141633,'b');plot(q_ocup_total*3.412141633,'c');plot(q_cond_pico_total*3.412141633,'y');plot(q_ilum_total*3.412141633,'k');
//Substituir valores de area e U para cada material
//Criar versão de calculo considerando sombreamento nas paredes e janelas, quando houver sombra é preciso considerar somente as parcelas condutivas e de insolacao difusa nas paredes e janelas
resultado_btu = [q_total,q_infilt_total,q_ilum_total,q_cond_pico_total,q_wind_pico_total,q_ocup_total]*3.412141633
hl=legend(['Calor total';'Janelas';'Infiltração';'Ocupação';'Condução';'Iluminação'])
|
0a4f26b0f9a0de6effd03cd0689b11cee5a5001e | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/slewrate.sci | 5b833276a118bf24c69af1f14e91f107346b6fcf | [] | no_license | sonusharma55/Signal-Toolbox | 3eff678d177633ee8aadca7fb9782b8bd7c2f1ce | 89bfeffefc89137fe3c266d3a3e746a749bbc1e9 | refs/heads/master | 2020-03-22T21:37:22.593805 | 2018-07-12T12:35:54 | 2018-07-12T12:35:54 | 140,701,211 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 14,094 | sci | slewrate.sci | function [s, lowercrossvalue, uppercrossvalue, lowerreference, upperreference]=slewrate(x, varargin)
// This function estimate slew rate of bilevel waveform transitions
// Calling Sequence
// s=slewrate(x)
// s=slewrate(x, t)
// s=slewrate(x, Fs)
// s=slewrate(x, t, 'PercentReferenceLevels', N )
// s=slewrate(x, t, 'Tolerance', M)
// s=slewrate(x, t,'StateLevels', O)
// [s lowercrossvalue uppercrossvalue lowerreference upperreference]=slewrate(x)
// [s lowercrossvalue uppercrossvalue lowerreference upperreference]=slewrate(x, t)
// // [s lowercrossvalue uppercrossvalue lowerreference upperreference]=slewrate(x, Fs)
// [s lowercrossvalue uppercrossvalue lowerreference upperreference]=slewrate(x, t, 'PercentReferenceLevels', N )
// [s lowercrossvalue uppercrossvalue lowerreference upperreference]= slewrate(x, t, 'Tolerance', M)
// [s lowercrossvalue uppercrossvalue lowerreference upperreference]= slewrate(x, t,'StateLevels', O)
// [s lowercrossvalue uppercrossvalue lowerreference upperreference]= slewrate(x, t,'StateLevels', O, 'fig', on or off)
//
// Parameters
// x: real vector.
// Fs: specifies the sample rate, Fs, as a positive scalar, where the first sample instant corresponds to a time of zero.
// t: defiene instant sample time t as vector with same length of x, or specifies the sample rate, t, as a positive scalar.
// PercentReferenceLevels: specify the mid percent reference leves as a percentage, default value of N is [10 90].
// Tolerance: define the tolerance value as real scaler value, where default value of M is 2.0.
// StateLevels: define the lower and upper state levels as two element real vector.
// fig: specify the logical input value to display figure as one of 'on' or 'off', where the default input in 'off'.
// s: returns a vector of the ratios of the level difference to the time duration between the points where each transition crosses the 10% and 90% reference levels.
// lowercrossvalue: return the lowerc cross value of bilevel waveform transitions X
// uppercrossvalue: return the upper cross value of bilevel waveform transitions X
// lowerreference: return lower reference value corrosponding to lower percent reference value.
// upperreference: return upper reference value corrosponding to upper percent reference value.
// Examples
// x=[1.2, 5, 10, -20, 12]
//t=1:length(x)
//s=slewrate(x, t)
// See also
// Authors
// Jitendra Singh
// run statelevels and midcross function before running risetime function.
if or(type(x)==10) then
error ('Input arguments must be double.')
end
if size(x,1)==1 | size (x,2)==1 then
else
error ('Argument X must be vector.')
end
if length(varargin)==0 then // if the no of input is 0, then specify the default values to input parameter.
[levels hist]=statelevels(x);
Lvarargin=list(1:length(x), 'StateLevels', levels(1), 'MidPercentReferenceLevel', 10, 'Tolerance', 2, 'fig', 'off')
Uvarargin=list(1:length(x), 'StateLevels', levels(2), 'MidPercentReferenceLevel', 90, 'Tolerance', 2, 'fig', 'off')
end
if length(varargin)>=1 & type(varargin(1))==1 then
if length(varargin(1))==1 then
t=(0:(length(x)-1));
elseif length(varargin(1))==length(x) then
t=varargin(1);
else
error('T must be a same length as X.')
end
else
t=1:length(x);
end
if length(varargin)>=2 & type(varargin(1))==1 & type(varargin(2))==1 then
error ("Too many leading numeric arguments (at most 2 expected).");
end
sindex=[];
if length(varargin)>=1 then
a=1;
for i=1:length(varargin)
if type(varargin(i))==10 then
sindex(a)=i;
a=a+1;
end
end
end
if length(sindex)>5 then
error('Unexpected argument.')
end
if length(varargin)==1 & (isempty(sindex)) then
[levels hist]=statelevels(x);
Lvarargin=list(t, 'StateLevels', levels(1), 'MidPercentReferenceLevel', 10, 'Tolerance', 2, 'fig', 'off')
Uvarargin=list(t, 'StateLevels', levels(2), 'MidPercentReferenceLevel', 90, 'Tolerance', 2, 'fig', 'off')
end
fig='OFF';
//////////////////////////////////
if (~isempty(sindex)) then
for j=1:length(sindex)
select convstr(varargin(sindex(j)),'u')
case {'STATELEVELS'}
////
if length(varargin) <=sindex(j) then
error(strcat(['parameter StateLevels required a value']));
end
if type(varargin(sindex(j)+1))==1 then
levels=varargin(sindex(j)+1);
elseif type(varargin(sindex(j)+1))==10 & convstr(varargin(sindex(j)+1), 'u')=='PERCENTREFERENCELEVELS' | convstr(varargin(sindex(j)+1),'u')== 'TOLERANCE' | convstr(varargin(sindex(j)+1), 'u')=='FIG' then
error('parameter StateLevels required a value.')
elseif type(varargin(sindex(j)+1))==10 then
error('Expected STATELEVELS to be one of these types: double, Instead its type was char.')
end
case {'PERCENTREFERENCELEVELS'}
if length(varargin) <=sindex(j) then
error(strcat(['parameter MidPercentRefernceLevel required a value.']));
end
if type(varargin(sindex(j)+1))==1 then
midpercentval= varargin(sindex(j)+1);
elseif type(varargin(sindex(j)+1))==10 & convstr(varargin(sindex(j)+1), 'u')=='STATELEVELS' | convstr(varargin(sindex(j)+1),'u')== 'TOLERANCE' | convstr(varargin(sindex(j)+1), 'u')=='FIG' then
error('parameter MidPercentRefernceLevel required a value.')
elseif type(varargin(sindex(j)+1))==10 then
error('Expected MidPercentRefernceLevel to be one of these types: double, Instead its type was char.')
end
if length( midpercentval)~=2 then
error ('Expected MidPercentRefernceLevel to be of size 1x2')
end
/////////////////////////////////
perval=varargin(sindex(j)+1);
disp(perval)
if perval(2)<= perval(1) then
error('The PercentReferenceLevels must be in increasing order.')
end
varargin(sindex(j))='MidPercentReferenceLevel';
varargin(sindex(j)+1)=perval(1);
Lvarargin= varargin;
varargin(sindex(j)+1)=perval(2);
Uvarargin=varargin;
case {'FIG'}
if length(varargin) <=sindex(j) then
error(strcat(['parameter fig required a value.']));
end
if type(varargin(sindex(j)+1))==1 then
error ('Expected fig to match one of these strings: on or off');
elseif type(varargin(sindex(j)+1))==10 & convstr(varargin(sindex(j)+1), 'u')=='STATELEVELS' | convstr(varargin(sindex(j)+1), 'u')== 'TOLERANCE' | convstr(varargin(sindex(j)+1), 'u')=='PERCENTREFERENCELEVELS' then
error('parameter fig required a value.')
else
fig= convstr(varargin(sindex(j)+1), 'u');
end
if fig == 'OFF' | fig == 'ON' then
else
error('Expected fig to match one of these strings: on or off');
end
case{'ON'}
case{'OFF'}
case {'TOLERANCE'}
if length(varargin) <=sindex(j) then
error(strcat(['parameter Tolerance required a value"]));
elseif type(varargin(sindex(j)+1))==1 then
tolerance= varargin(sindex(j)+1);
elseif type(varargin(sindex(j)+1))==10 & convstr(varargin(sindex(j)+1), 'u')== 'STATELEVELS' | convstr(varargin(sindex(j)+1), 'u')== 'PERCENTREFERENCELEVELs' | convstr(varargin(sindex(j)+1), 'u')=='FIG' then
error('parameter Tolerance required a value.');
elseif type(varargin(sindex(j)+1))==10 then
error('Expected Tolerance to be one of these types: double, Instead its type was char.');
end
else
error(strcat(['Invalid optional argument'," ", varargin(sindex(j))]));
end // switch
end // for
end // if
/////////////////////////////////////////////
indexx=[];
if length(sindex)>=1 then
a=1;
for i=1:length(sindex)
indexx(a)=find(convstr(varargin(sindex(i)), 'u')=='MIDPERCENTREFERENCELEVEL')
a=a+1;
end
end
if sum(indexx)==0 then
varargin(length(varargin)+1)='MIDPERCENTREFERENCELEVEL';
varargin(length(varargin)+1)=10;
Lvarargin= varargin;
varargin(length(varargin))=90;
Uvarargin=varargin;
end
index_on=[];
if length(sindex)>=1 then
a=1;
for i=1:length(sindex)
index_on(a)=find(convstr(varargin(sindex(i)), 'u')=='ON')
a=a+1;
end
end
if sum(index_on)>0 then
Lvarargin(sindex(find(index_on>0)))='OFF';
Uvarargin(sindex(find(index_on>0)))='OFF';
end
[lcrossval lref levels t tolerance]= midcross(x, Lvarargin(:));
[ucrossval uref]=midcross(x, Uvarargin(:));
if length(lcrossval)==length(ucrossval) then
ss=ucrossval-lcrossval
elseif length(lcrossval)>length(ucrossval)
n=length(ucrossval);
ss=ucrossval-lcrossval(1:n);
else
n=length(lcrossval);
ss=ucrossval(1:n)-lcrossval;
end
s=(uref-lref)./ss;
uppercrossvalue=ucrossval;
lowercrossvalue=lcrossval;
lowerreference=lref;
upperreference=uref;
upperbound= levels(2)- (tolerance/100)*(levels(2)-levels(1));
mostupperbound=levels(2)+ (tolerance/100)*(levels(2)-levels(1));
lowerbound= levels(1)+ (tolerance/100)*(levels(2)-levels(1));
mostlowerbound=levels(1)- (tolerance/100)*(levels(2)-levels(1));
if fig=='ON' then // if the defined output is only 1, the it will provide the graphical representation of //levels
if length(s)==0 then
plot(t,x, 'LineWidth',1, 'color', 'black')
plot(t,upperreference * ones(1, length(t)),'-r', 'LineWidth',0.5)
plot(t,lowerreference * ones(1, length(t)),'-g', 'LineWidth',0.5)
plot(t,mostupperbound * ones(1, length(t)),'--r', 'LineWidth',0.5)
plot(t,levels(2) * ones(1, length(t)),'--k', 'LineWidth',0.5)
plot(t,upperbound * ones(1, length(t)),'--r', 'LineWidth',0.5)
plot(t,lowerbound *ones(1, length(t)),'--g', 'LineWidth',0.5)
plot(t,levels(1) * ones(1, length(t)),'--k', 'LineWidth',0.5)
plot(t,mostlowerbound * ones(1, length(t)),'--g', 'LineWidth',0.5)
xlabel("Time (second)", "fontsize",3, "color", "black" )
ylabel("Level (Volts)", "fontsize",3, "color", "black" )
legends(["Signal"; "upper boundary"; "upper state"; "lower boundary"; "upper reference"; "lower reference"; "upper boundary"; "lower state"; "lower boundary"], [[1;1], [5;2], [1;2], [5;2], [5;1], [3;1], [3;2], [1;2], [3;2]], opt='?')
else
plot(t,x, 'LineWidth',1, 'color', 'black')
plot(t,upperreference * ones(1, length(t)),'-r', 'LineWidth',0.5)
plot(t,lowerreference * ones(1, length(t)),'-g', 'LineWidth',0.5)
rects=[lowercrossvalue; upperreference*ones(lowercrossvalue); ss; (upperreference-lowerreference)*ones(s)]
col=-10*ones(s);
xrects(rects, col);
plot(uppercrossvalue, upperreference*ones(uppercrossvalue), "r*", 'MarkerSize',15);
plot(lowercrossvalue, lowerreference*ones(lowercrossvalue), "g*", 'MarkerSize',15);
plot(t,mostupperbound * ones(1, length(t)),'--r', 'LineWidth',0.5)
plot(t,levels(2) * ones(1, length(t)),'--k', 'LineWidth',0.5)
plot(t,upperbound * ones(1, length(t)),'--r', 'LineWidth',0.5)
plot(t,lowerbound *ones(1, length(t)),'--g', 'LineWidth',0.5)
plot(t,levels(1) * ones(1, length(t)),'--k', 'LineWidth',0.5)
plot(t,mostlowerbound * ones(1, length(t)),'--g', 'LineWidth',0.5)
//
xlabel("Time (second)", "fontsize",3, "color", "black" )
ylabel("Level (Volts)", "fontsize",3, "color", "black" )
legends(["slewrate"; "Signal"; "upper cross"; "lower cross"; "upper boundary"; "upper state"; "lower boundary"; "upper reference"; "lower reference"; "upper boundary"; "lower state"; "lower boundary"], [[-11; 2] , [1;1], [-10;5], [-10;3], [5;2], [1;2], [5;2], [5;1], [3;1], [3;2],[1;2], [3;2]], opt='?')
end
end
endfunction
|
539ff92f59ce1892451e24475b3348cb0dc6fdb9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH6/EX6.23/EX_6_23.sce | 259340485fd3514d3b312e5df7f31ac9606f21be | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 430 | sce | EX_6_23.sce | // Example 6.23;// feedback factor and change in overall gain
clc;
clear;
close;
Zo=12.6;//output impedance in killo ohms
Zofb=600;//output impedance in ohms with feedback
Ad= 60;//gain in dB
A= 10^(Ad/20);//gain
Beta= ((Zo*10^3/Zofb)-1)/A;//feedback factor
dA= 10;// open voltage gain
dAf= (1/(1+Beta*A))*dA;//GAIN WITH FEEDBACK
disp(Beta,"feedbck factor is")
disp(dAf,"change in overall gain is in percentage")
|
76a46ed2e8cc0299584e822f604f07f3046f2bb9 | 5f48beee3dc825617c83ba20a7c82c544061af65 | /tests/s/21.tst | 47bf56c667381d6d67e4dedd18ed5188b409c971 | [] | no_license | grenkin/compiler | bed06cd6dac49c1ca89d2723174210cd3dc8efea | 30634ec46fba10333cf284399f577be7fb8e5b61 | refs/heads/master | 2020-06-20T12:44:17.903582 | 2016-11-27T03:08:20 | 2016-11-27T03:08:20 | 74,863,612 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 28 | tst | 21.tst | static int x;
typedef int y; |
fdddc4872d066a94b0aee7d7135ff8bffb278e00 | c7186ce0b8c965fd38aeb032841ed02b231a9371 | /projects/02/Neg16.tst | 42a4ef59e7df1f9f3807e94f1fd9b6aa72286504 | [] | no_license | kendai912/nand2tetris | 8d4ddead6046975302f53af0b638a409603d13c9 | 0a54a3278f8c81edc6a59338c164f2a4fa723a3b | refs/heads/master | 2023-07-29T19:22:57.421565 | 2021-09-03T14:34:05 | 2021-09-03T14:34:05 | 280,770,807 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 315 | tst | Neg16.tst | load Neg16.hdl,
output-file Neg16.out,
compare-to Neg16.cmp,
output-list a%B1.16.1 neg%D2.1.2 out%B1.16.1;
set a %B0000000000000000,
set neg 0,
eval,
output;
set a %B0000000000000000,
set neg 1,
eval,
output;
set a %B1110101010101010,
set neg 0,
eval,
output;
set a %B1110101010101010,
set neg 1,
eval,
output;
|
0baa14574f566b3b101153b09b609ade6b010a2e | 449d555969bfd7befe906877abab098c6e63a0e8 | /564/DEPENDENCIES/26_2data.sci | dc24cd5c37368226d6d734190f46b00c7e615f5a | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 85 | sci | 26_2data.sci | R=200;//given,in mm
Load=20000;//given,in N
G=70000;//in N/mm^2
t=2;//thickness in mm |
ab54246e14f7d5bafa793ee007e5c3fe5fa234dd | f2635c3a10a2508720f5d231581bbcf58664cf12 | /pl/math/test/testcases/directed/erfcf.tst | 719baccb2e452b28434615dcbed489d4c7164d22 | [
"LLVM-exception",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | xboxfanj/optimized-routines | 9ed0fef9346076e3eaf952cecd9b6c39cca8d92b | e312306d13daf9c044145ca26fb34ef7704fae81 | refs/heads/master | 2023-01-21T08:14:26.298438 | 2022-12-21T00:02:54 | 2023-01-10T16:39:37 | 232,194,104 | 0 | 0 | MIT | 2020-01-06T22:07:31 | 2020-01-06T22:07:30 | null | UTF-8 | Scilab | false | false | 617 | tst | erfcf.tst | ; erfcf.tst - Directed test cases for erfcf
;
; Copyright (c) 2007-2023, Arm Limited.
; SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
func=erfcf op1=7fc00001 result=7fc00001 errno=0
func=erfcf op1=ffc00001 result=7fc00001 errno=0
func=erfcf op1=7f800001 result=7fc00001 errno=0 status=i
func=erfcf op1=ff800001 result=7fc00001 errno=0 status=i
func=erfcf op1=7f800000 result=00000000 errno=0
func=erfcf op1=7f7fffff result=00000000 errno=ERANGE status=ux
func=erfcf op1=ff800000 result=40000000 errno=0
func=erfcf op1=00000000 result=3f800000 errno=0
func=erfcf op1=80000000 result=3f800000 errno=0
|
4f4e04be86aacfd9de9eb4241556f1d04bec2d26 | 449d555969bfd7befe906877abab098c6e63a0e8 | /764/CH6/EX6.3.b/solution6_3.sce | b50d7d732801c0b264423c2a1fb19495a8344494 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,126 | sce | solution6_3.sce |
//Obtain path of solution file
path = get_absolute_file_path('solution6_3.sce')
//Obtain path of data file
datapath = path + filesep() + 'data6_3.sci'
//Clear all
clc
//Execute the data file
exec(datapath)
//Calculate lead of the screw l (mm)
l = n * p
//Calculate the mean diameter of the screw dm (mm)
dm = d - (0.5 * p)
//Calculate the lead angle alpha (degree)
alpha = atand(l/(%pi * dm))
//Assume the clamping force to be 1N W
W = 1
//Calculate angle of repose for the thread fi1 (degree)
fi1 = atand(mu1)
//Calculate torque required Mt (N-mm)
Mt = (W * dm * tand(fi1 + alpha))/2
//Calculate torque required to overcome collar friction Mtc (N-mm)
//Apply uniform-wear theory
Mtc = ((mu2 * W)*(Do + Di))/4
//Total external torque applied to the handle MTotal (N-mm)
MTotal = P * dist
//Calculate the actual clampng force W (N)
W = MTotal/(Mt + Mtc)
//Calculate overall efficiency of the clamp eta (%)
eta = ((W * l)/(2 * %pi * MTotal))*100
//Print results
printf('\nClamping force developed between the jaws(P) = %f N\n',W)
printf('\nOverall efficiency of clamp(eta) = %f percent\n',eta)
|
da5203a99ff636ad3bb8ca3864709926d56f91d4 | e04f3a1f9e98fd043a65910a1d4e52bdfff0d6e4 | /New LSTMAttn Model/.data/form-split/SURPRISE-LANGUAGES/Turkic/aze.tst | 987265f2eab38cb576340980d37b8d1ffbaf6446 | [] | no_license | davidgu13/Lemma-vs-Form-Splits | c154f1c0c7b84ba5b325b17507012d41b9ad5cfe | 3cce087f756420523f5a14234d02482452a7bfa5 | refs/heads/master | 2023-08-01T16:15:52.417307 | 2021-09-14T20:19:28 | 2021-09-14T20:19:28 | 395,023,433 | 3 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 33,664 | tst | aze.tst | dünya N;ABL;SG;PSS3P
uşaqlıq N;LOC;PL;PSS3P
dünya N;LOC;PL;PSS3P
düşmən N;NOM;PL;PSS3P
qardaş N;ACC;SG;PSS3P
lüğət N;GEN;DEF;PL
kəfgir N;ABL;PL
yemiş N;ACC;PL;PSS3P
məktəb N;NOM;SG;PSS2S
rəhbər N;NOM;SG;PSS3P
namaz N;ACC;PL;PSS3P
onurğa N;DAT;PL;PSS3P
amfiteatr N;ABL;SG
pilləkən N;LOC;PL
qan N;NOM;PL
əqrəb N;LOC;SG;PSS2S
ilan N;ACC;DEF;SG
ərik N;LOC;PL;PSS3P
hörümçək N;ACC;DEF;SG
hüceyrə N;NOM;PL
qoxu N;ACC;PL;PSS3P
beyin N;GEN;SG;PSS2S
tilişkə N;ABL;SG
dirsək N;ACC;PL;PSS2P
namaz N;ACC;DEF;SG
dolab N;ABL;SG
sümük N;LOC;SG;PSS1S
tələbə N;DAT;SG;PSS1S
alət N;GEN;PL;PSS1S
ulduz N;GEN;DEF;PL
ağac N;ACC;DEF;SG
gəmi N;ACC;DEF;PL
bıçaq N;NOM;PL;PSS1S
armud N;LOC;SG
tüstü N;LOC;PL
zoğ N;ACC;DEF;SG
tərcümə N;ABL;PL;PSS1S
sabun N;ACC;DEF;SG
alça N;DAT;SG;PSS1S
sümük N;ACC;SG;PSS3P
xloroplast N;ACC;DEF;PL
nar N;NOM;PL
dodaq N;ACC;DEF;PL
yağış N;ACC;DEF;SG
nəfəs N;LOC;SG
ayaqqabı N;ABL;PL
beyin N;ACC;SG;PSS3P
kölgə N;DAT;SG;PSS3S
dünya N;GEN;PL;PSS2S
dinozavr N;GEN;PL;PSS3P
əqrəb N;GEN;PL;PSS3P
ereksiya N;ABL;PL;PSS1S
kömək N;LOC;PL;PSS3S
vertolyot N;GEN;DEF;SG
kömək N;NOM;SG;PSS2P
açar N;DAT;SG;PSS2S
buynuz N;GEN;DEF;SG
hüceyrə N;ABL;PL;PSS1S
ad N;ACC;DEF;PL
nəticə N;ACC;DEF;PL
göbək N;GEN;DEF;SG
dünya N;ACC;PL;PSS3S
mətbəx N;LOC;SG
xəzinə N;DAT;PL;PSS1S
hüceyrə N;LOC;PL;PSS1S
məktəb N;LOC;SG
kömək N;GEN;DEF;PL
hinduşka N;ACC;DEF;PL
geodeziya N;NOM;PL
rəngləmək V;PL;2;PST
bardaq N;ABL;SG
baldız N;GEN;SG;PSS3P
kəfgir N;DAT;SG;PSS2S
düşərgə N;ACC;DEF;SG
müzakirə N;ABL;PL;PSS1S
hinduşka N;ACC;DEF;SG
tələbə N;NOM;PL;PSS2S
müzakirə N;LOC;PL
qarğa N;ABL;PL
qoxu N;LOC;SG;PSS2S
ereksiya N;NOM;SG;PSS3P
bozbaş N;ACC;DEF;SG
rəhbər N;LOC;SG;PSS3S
baldız N;NOM;PL;PSS3S
balıq N;ACC;DEF;PL
biçin N;ABL;SG
ana N;GEN;DEF;PL
od N;NOM;SG
dinozavr N;LOC;PL
qoxu N;NOM;SG;PSS1S
badam N;ACC;DEF;SG
kömək N;ABL;SG
leşyeyən N;NOM;PL
mələk N;ACC;PL;PSS2P
piano N;LOC;PL
minbər N;LOC;PL
qardaş N;DAT;SG;PSS3P
şamisen N;ABL;SG
beyin N;ACC;SG;PSS1S
xər N;NOM;PL
onurğa N;LOC;SG;PSS2S
mənzərə N;GEN;PL;PSS3P
penis N;NOM;PL;PSS3P
ay N;ACC;DEF;SG
namaz N;ABL;PL
arxiv N;GEN;PL;PSS2S
qardaş N;ABL;SG;PSS2P
qoxu N;DAT;PL;PSS2S
onurğa N;ACC;DEF;PL
xəstəlik N;LOC;PL
inək N;GEN;DEF;PL
okean N;NOM;SG
dinozavr N;LOC;PL;PSS3P
əqrəb N;ACC;DEF;PL
qardaşlıq N;LOC;PL
vəziyyət N;LOC;SG;PSS3S
ağlamaq V;SG;1;PST
kəfgir N;NOM;PL
xoruz N;GEN;DEF;SG
od N;LOC;SG
namaz N;DAT;PL;PSS3S
kəfgir N;ABL;SG;PSS1S
rəssam N;ACC;DEF;SG
gülüş N;NOM;PL;PSS3P
mələk N;LOC;PL;PSS2P
qoxu N;GEN;DEF;PL
bacı N;NOM;SG;PSS2S
dəmir N;NOM;PL
kəfgir N;ABL;PL;PSS3S
müzakirə N;ABL;PL;PSS2P
dəmir N;NOM;SG
ereksiya N;ABL;SG;PSS2P
ad N;NOM;PL
hörümçək N;GEN;SG;PSS1S
buz N;GEN;DEF;SG
əqrəb N;NOM;SG;PSS1S
rəhbər N;ACC;DEF;SG
ağacdələn N;ACC;DEF;SG
tərcümə N;LOC;PL
qaçmaq V;SG;2;FUT
xoruz N;ABL;PL
rəhbər N;LOC;PL;PSS1S
şirkət N;GEN;DEF;PL
ada N;ACC;DEF;PL
rəhbər N;LOC;PL
işıq N;NOM;SG
çiyələk N;GEN;DEF;PL
şəhər N;LOC;SG
jasmin N;GEN;DEF;PL
yəhudi N;LOC;SG
dırnaq N;ACC;PL;PSS3P
hüceyrə N;GEN;PL;PSS3P
kəfgir N;GEN;PL;PSS2P
ereksiya N;GEN;DEF;PL
rəhbər N;LOC;PL;PSS3P
balalayka N;LOC;SG
dırnaq N;DAT;PL;PSS2S
gülüş N;NOM;SG;PSS3P
gülüş N;ACC;DEF;PL
kamerton N;GEN;DEF;PL
bozbaş N;ACC;DEF;PL
şaftalı N;GEN;PL;PSS3P
kraliça N;GEN;PL;PSS1S
qəlsəmə N;NOM;PL
dalğa N;NOM;SG;PSS3S
qardaş N;NOM;SG;PSS2S
dırnaq N;LOC;SG;PSS3S
qaçqın N;ACC;DEF;SG
özünüidarəetmə N;LOC;PL
hörümçək N;NOM;SG;PSS2S
qarğa N;ACC;DEF;PL
qaloş N;ACC;DEF;SG
qulaq N;LOC;PL;PSS2S
mələk N;ABL;SG
soğan N;ABL;SG
günəş N;ACC;DEF;SG
ağlamaq V;PL;1;PST
açar N;LOC;PL;PSS3P
rəng N;ACC;DEF;PL
ərik N;ACC;DEF;PL
ana N;ABL;SG;PSS2P
içmək V;PL;1;PST
fəaliyyət N;NOM;PL;PSS3P
onurğa N;NOM;SG;PSS2P
ereksiya N;NOM;SG;PSS3S
dəvəquşu N;GEN;DEF;PL
sümük N;DAT;PL;PSS3P
qurbağa N;LOC;PL
əqrəb N;GEN;SG;PSS3S
şaftalı N;NOM;SG;PSS2P
ördək N;LOC;SG
kraliça N;NOM;SG;PSS2S
açar N;LOC;PL;PSS3P
dırnaq N;ACC;SG;PSS2P
gülüş N;DAT;SG;PSS3P
fahişə N;NOM;PL
rəndə N;ACC;DEF;PL
ağacdələn N;LOC;PL
bəbək N;GEN;DEF;SG
qaçmaq V;PL;1;PST
alça N;LOC;PL;PSS2S
soğan N;LOC;PL
qalibiyyət N;GEN;DEF;PL
dinozavr N;NOM;SG;PSS2P
qatar N;LOC;SG
çiçək N;NOM;SG
ət N;LOC;PL
fırtına N;NOM;PL
yemiş N;GEN;SG;PSS1S
od N;ACC;DEF;SG
süngü N;ACC;SG;PSS2S
təsadüf N;LOC;PL
hüceyrə N;NOM;PL;PSS2S
beyin N;GEN;SG;PSS1S
arxiv N;DAT;SG;PSS3P
köynək N;ACC;SG;PSS1S
arxiv N;DAT;SG;PSS2P
düşman N;ACC;SG;PSS3P
quyruq N;ABL;PL
bacı N;DAT;SG;PSS3P
uşaqlıq N;GEN;SG;PSS1S
sümük N;DAT;SG;PSS3S
ad N;GEN;DEF;PL
kişi N;LOC;PL
dünya N;ABL;SG;PSS2P
çiyələk N;GEN;DEF;SG
brilyant N;ABL;PL
buynuz N;ACC;PL;PSS3S
qulaq N;GEN;PL;PSS3P
baldız N;ABL;PL;PSS3P
mənzərə N;ACC;PL;PSS2P
dəyirman N;GEN;DEF;PL
ərik N;ABL;PL;PSS3P
müzakirə N;DAT;PL;PSS3S
xloroplast N;ABL;SG
bibər N;GEN;DEF;PL
açar N;ABL;PL;PSS1S
uşaqlıq N;LOC;PL;PSS2S
mələk N;LOC;PL;PSS3P
qulaq N;LOC;SG;PSS3P
mənzərə N;LOC;SG;PSS3P
ayaq N;ACC;DEF;PL
əqrəb N;GEN;SG;PSS2P
oturmaq V;PROG;PL;3;PRS
şənbə N;ABL;SG
bülbül N;ACC;DEF;SG
həqiqət N;ACC;DEF;SG
mələk N;NOM;PL;PSS3P
dirsək N;LOC;PL;PSS2P
vəziyyət N;LOC;PL;PSS3S
ərik N;ABL;SG;PSS3P
namaz N;NOM;SG;PSS3P
dalğa N;LOC;PL;PSS1S
qəlb N;ABL;PL;PSS3P
kəlbətin N;ACC;DEF;PL
köynək N;ABL;SG;PSS2S
kraliça N;GEN;DEF;PL
rəhbər N;GEN;PL;PSS2P
rəhbər N;GEN;SG;PSS2P
darçın N;ABL;PL
tərcümə N;NOM;PL;PSS3P
vaza N;ABL;PL;PSS3S
gülüş N;ABL;PL
onurğa N;LOC;PL;PSS3S
penis N;NOM;PL;PSS2S
kraliça N;LOC;SG;PSS1S
süngü N;NOM;SG;PSS2P
dünya N;ABL;SG;PSS2S
mənzərə N;LOC;PL
dinozavr N;NOM;PL;PSS3P
alət N;DAT;SG;PSS2P
tərcümə N;GEN;DEF;PL
penis N;LOC;SG;PSS1S
motosiklet N;NOM;SG
tilişkə N;GEN;DEF;SG
müqayisə N;NOM;PL
söz N;ABL;PL
kölgə N;ABL;SG;PSS3P
bazar N;LOC;PL
köpük N;ABL;SG
xəritə N;ACC;SG;PSS2S
temperatur N;ACC;DEF;PL
xəzinə N;GEN;SG;PSS3P
tarix N;LOC;PL
mənzərə N;ABL;PL;PSS2P
balalayka N;GEN;DEF;SG
dövri cədvəl N;NOM;SG
donuz N;GEN;DEF;PL
düşman N;LOC;SG;PSS2P
sümük N;ACC;DEF;PL
ox N;NOM;PL
mənzərə N;NOM;SG;PSS3P
kraliça N;GEN;PL;PSS3P
süngü N;NOM;PL;PSS3P
vaza N;DAT;PL;PSS3P
bacı N;DAT;PL;PSS1S
onurğa N;LOC;PL;PSS1S
bıçaq N;ABL;SG;PSS3P
penis N;LOC;PL;PSS3P
elektron poçt N;NOM;SG
vertolyot N;ACC;DEF;PL
göyərçin N;LOC;SG
ərik N;ACC;DEF;SG
hüceyrə N;ABL;SG;PSS2S
beyin N;NOM;PL;PSS2P
zəfər N;GEN;DEF;PL
məktəb N;ABL;PL
geyşa N;GEN;DEF;SG
lüğət N;GEN;DEF;SG
qatar N;ABL;SG
dünya N;DAT;SG;PSS3P
dalğıc N;LOC;SG
okean N;LOC;PL
axış N;ACC;DEF;PL
buynuz N;DAT;SG;PSS2S
ereksiya N;ABL;PL;PSS2P
sözlük N;LOC;PL
onurğa N;DAT;SG;PSS3P
tülkü N;ABL;SG
onurğa N;ABL;PL;PSS1S
kəlbətin N;ACC;DEF;PL
qarışqa N;GEN;DEF;SG
pişik N;ACC;DEF;PL
piano N;ABL;PL
dalğa N;ABL;PL
tələbə N;LOC;PL
ox N;LOC;SG
düşmən N;ACC;DEF;PL
qəzet N;LOC;SG
quş N;ACC;DEF;SG
kaktus N;ABL;PL
alça N;ABL;SG
mələk N;DAT;PL;PSS2P
bacı N;LOC;PL;PSS3P
pomidor N;ACC;DEF;PL
fəlsəfə N;NOM;PL;PSS1S
ana N;GEN;SG;PSS1S
ensiklopediya N;ABL;SG
yemiş N;DAT;PL;PSS3S
armud N;ACC;DEF;SG
donuz N;ABL;PL
yemiş N;ACC;SG;PSS3S
geodeziya N;ACC;DEF;PL
quş N;NOM;PL
şaftalı N;NOM;SG;PSS3S
bıçaq N;GEN;SG;PSS3P
böyrək N;ACC;DEF;PL
çömçəquyruq N;ACC;DEF;PL
onurğa N;GEN;SG;PSS3P
ada N;LOC;SG
düşmən N;NOM;SG;PSS1S
din N;ABL;PL
düşmən N;DAT;SG;PSS2S
dinozavr N;LOC;SG;PSS2S
avtomobil N;ACC;DEF;SG
qardaşlıq N;ABL;PL
axış N;ACC;DEF;SG
kəpənək N;ABL;PL
ereksiya N;LOC;SG
kölgə N;DAT;SG;PSS3P
mismar N;GEN;DEF;PL
alov N;ACC;DEF;PL
göl N;ACC;DEF;PL
ulduz N;ACC;DEF;SG
açar N;LOC;SG;PSS2S
qoxu N;ABL;PL;PSS3P
bazar N;ACC;DEF;PL
texnologiya N;NOM;SG
axşam N;ACC;DEF;PL
matç N;NOM;SG
tülkü N;ACC;DEF;PL
bahar N;LOC;SG
kölgə N;ACC;PL;PSS3P
kilsə N;ABL;SG
rəng N;GEN;DEF;PL
kraliça N;LOC;PL;PSS2P
düşman N;NOM;SG;PSS3S
gecə N;NOM;PL
muzey N;ABL;PL
arxiv N;ABL;SG;PSS3P
bacı N;ACC;DEF;SG
fəlsəfə N;GEN;PL;PSS3P
qaçmaq V;SG;1;PST
beyin N;LOC;SG
mələk N;DAT;SG;PSS1S
şahmat N;ACC;DEF;SG
dırnaq N;ABL;PL
tələbə N;DAT;SG;PSS3S
bıçaq N;DAT;PL;PSS3P
ərik N;DAT;PL;PSS2S
zəlzələ N;LOC;SG
ərik N;DAT;SG;PSS2S
göz N;LOC;SG;PSS2S
dünya N;DAT;PL;PSS3P
qulaq N;ABL;SG;PSS1S
avtomobil N;ABL;PL
eşşək N;ABL;SG
qardaş N;ABL;PL;PSS1S
fəaliyyət N;ACC;DEF;PL
tələbə N;NOM;PL;PSS3S
səviyyə N;NOM;PL
kölgə N;GEN;PL;PSS2P
namaz N;ACC;PL;PSS3P
inək N;ACC;DEF;PL
namaz N;ACC;PL;PSS2S
onurğa N;ACC;DEF;SG
köpük N;ACC;DEF;SG
ördək N;ABL;SG
dirsək N;ABL;SG;PSS3S
penis N;GEN;PL;PSS2S
özünüidarəetmə N;LOC;SG
skripka N;ACC;DEF;SG
təzyiq N;ACC;DEF;SG
dünya N;GEN;DEF;SG
bacı N;ABL;PL;PSS3P
dirsək N;GEN;PL;PSS3P
göz N;NOM;PL;PSS3P
dünya N;DAT;PL;PSS2P
əjdaha N;ACC;DEF;SG
dəvəquşu N;ACC;DEF;SG
vəziyyət N;DAT;SG;PSS3S
yemiş N;ABL;SG;PSS2P
düşman N;NOM;SG;PSS3P
onurğa N;NOM;PL;PSS3P
məktəb N;ACC;SG;PSS3P
gülmək V;SG;3;FUT
penis N;DAT;PL;PSS1S
körfəz N;LOC;PL
açar N;LOC;SG;PSS3S
fəaliyyət N;NOM;PL;PSS3S
xəritə N;ABL;PL;PSS3P
dayanacaq N;NOM;SG
məktəb N;DAT;PL;PSS3P
incəsənət N;LOC;SG
ərik N;DAT;SG;PSS3P
böyrək N;NOM;SG
qəlb N;GEN;PL;PSS3P
əjdaha N;GEN;DEF;PL
dirsək N;DAT;SG;PSS1S
namaz N;LOC;PL
pişik N;ACC;DEF;PL
günbəz N;ACC;DEF;SG
şaftalı N;ABL;PL;PSS3S
mənzərə N;GEN;DEF;PL
şahmat N;NOM;PL
rəngləmək V;SG;1;FUT
dirsək N;ABL;SG;PSS3P
qoxu N;ABL;SG;PSS2P
tərcümə N;LOC;PL;PSS2P
mənzərə N;GEN;SG;PSS2P
kraliça N;ABL;SG;PSS1S
qarpız N;GEN;DEF;SG
matç N;ACC;DEF;SG
qardaşlıq N;ACC;DEF;SG
tələbə N;LOC;SG;PSS3P
gülüş N;ABL;SG;PSS3P
dilənçi N;ACC;DEF;SG
yardım N;GEN;DEF;PL
fəlsəfə N;NOM;SG;PSS2P
tələbə N;NOM;SG
süngü N;ABL;SG;PSS3S
geyşa N;LOC;PL
sevgi N;NOM;PL
bacı N;LOC;SG;PSS1S
damcı N;ACC;DEF;PL
bıçaq N;DAT;SG;PSS1S
ereksiya N;ACC;PL;PSS3S
alət N;GEN;PL;PSS2S
alça N;DAT;SG;PSS3P
vəftiz N;ACC;DEF;PL
dinozavr N;DAT;SG;PSS2S
dırnaq N;ABL;SG
şaftalı N;DAT;SG;PSS1S
düşmən N;DAT;SG;PSS3S
günəbaxan N;ABL;SG
süngü N;NOM;SG
namaz N;LOC;SG;PSS3P
bibər N;GEN;DEF;SG
tülpan N;GEN;DEF;SG
xəzinə N;ABL;PL;PSS3S
sivilizasiya N;LOC;SG
göl N;ABL;SG
şənbə N;LOC;SG
göydələn N;NOM;PL
yemiş N;ABL;SG;PSS1S
tələbə N;GEN;PL;PSS3P
dünya N;LOC;PL;PSS3P
dünya N;GEN;SG;PSS1S
istifadəçi N;GEN;DEF;SG
göz N;DAT;SG;PSS3P
məktəb N;NOM;PL;PSS1S
pay N;GEN;DEF;PL
sünnət N;LOC;PL
dolab N;ACC;DEF;PL
mismar N;ACC;DEF;SG
yemiş N;LOC;SG;PSS1S
bürc N;ABL;SG
balalayka N;ACC;DEF;PL
dünya N;NOM;PL;PSS2P
beyin N;ACC;SG;PSS2P
ərik N;ACC;DEF;PL
bağban N;LOC;PL
dağ N;NOM;PL
rəngləmək V;PL;1;PST
hüceyrə N;NOM;SG;PSS2P
köpək N;ACC;DEF;PL
ad N;NOM;SG
namaz N;ACC;SG;PSS3P
sözlük N;ACC;DEF;PL
göbək N;ABL;SG
respublika N;GEN;DEF;PL
dirsək N;NOM;SG;PSS2S
fəlsəfə N;GEN;SG;PSS2S
mənzərə N;NOM;SG;PSS1S
xarici dil N;ACC;DEF;PL
dinozavr N;ACC;SG;PSS3P
əqrəb N;ABL;SG;PSS2P
qaçqın N;ACC;DEF;SG
geyşa N;ACC;DEF;SG
ağacdələn N;ACC;DEF;SG
osminoq N;NOM;SG
tülkü N;GEN;DEF;SG
zəlzələ N;LOC;PL
oraq N;LOC;SG
yemiş N;NOM;PL;PSS3P
alça N;GEN;PL;PSS3P
fəaliyyət N;ABL;SG;PSS3S
fəlsəfə N;ACC;PL;PSS1S
hörümçək N;NOM;PL;PSS1S
texnologiya N;ABL;SG
zəfəran N;ACC;DEF;SG
düşman N;ACC;PL;PSS3P
alət N;ABL;SG;PSS3P
beyin N;ABL;PL;PSS1S
tələbə N;DAT;PL;PSS2S
cəsəd N;ACC;DEF;SG
bağban N;ACC;DEF;SG
kölgə N;ACC;DEF;PL
buynuz N;LOC;PL;PSS2S
vəziyyət N;LOC;SG;PSS1S
şaftalı N;DAT;SG;PSS3P
qəlb N;DAT;SG;PSS1S
qardaş N;ACC;SG;PSS1S
yaquar N;ABL;PL
qardaş N;ACC;DEF;SG
gün N;NOM;SG
dalğa N;NOM;PL;PSS2P
dayanacaq N;LOC;PL
mitoxondri N;NOM;PL
bacı N;ACC;SG;PSS3P
alça N;LOC;PL;PSS3S
xəzinə N;NOM;SG;PSS1S
qızılgül N;ACC;DEF;PL
tısbağa N;ACC;DEF;PL
tələbə N;GEN;PL;PSS1S
ereksiya N;LOC;PL;PSS1S
birlik N;ABL;SG
rəhbər N;ACC;DEF;SG
fəaliyyət N;ACC;SG;PSS3P
düşmən N;NOM;SG;PSS2S
şaftalı N;DAT;PL;PSS1S
arxiv N;LOC;PL;PSS3P
penis N;GEN;PL;PSS3S
sözlük N;GEN;DEF;SG
bulaq N;ABL;PL
ana N;ABL;PL;PSS3P
süd N;GEN;DEF;PL
bağırtı N;NOM;SG
uçan xalça N;ACC;DEF;PL
kraliça N;ABL;PL;PSS3S
yemiş N;NOM;SG
ərik N;DAT;PL;PSS3P
üzüm N;NOM;SG
ördək N;GEN;DEF;SG
körfəz N;ACC;DEF;PL
canavar N;NOM;PL
diz N;LOC;SG
sabun N;ABL;PL
brilyant N;GEN;DEF;PL
xəritə N;ACC;SG;PSS3S
dibçək N;LOC;SG
qaloş N;LOC;PL
müsabiqə N;ACC;DEF;PL
meyvə N;GEN;DEF;PL
yemiş N;LOC;SG;PSS3P
texnologiya N;LOC;SG
şaftalı N;ABL;PL;PSS2P
qəlb N;DAT;PL;PSS3P
hüceyrə N;LOC;PL;PSS3P
kraliça N;GEN;DEF;SG
dirsək N;DAT;PL;PSS3S
kölgə N;LOC;SG;PSS3P
kömək N;ABL;SG;PSS3S
dalğa N;NOM;PL;PSS2S
psixoterapiya N;ABL;SG
skripka N;NOM;SG
köpək N;ACC;DEF;PL
yemiş N;DAT;PL;PSS2S
öpüş N;NOM;PL
əqrəb N;ACC;DEF;PL
bulud N;GEN;DEF;SG
fakültə N;NOM;PL
busə N;NOM;PL
beyin N;ABL;SG;PSS3P
içmək V;PL;1;FUT
gön N;ACC;DEF;PL
dünya N;ACC;SG;PSS3P
film N;NOM;SG
cücü N;LOC;PL
temperatur N;GEN;DEF;PL
ütü N;LOC;PL
diqqət N;NOM;SG
tələbə N;ABL;SG;PSS3S
ana N;ABL;PL;PSS3P
buynuz N;ACC;DEF;PL
sümük N;NOM;SG;PSS3S
əqrəb N;GEN;SG;PSS2S
fırtına N;ACC;DEF;SG
yemiş N;NOM;SG;PSS3S
mənzərə N;DAT;PL;PSS3P
baldız N;GEN;PL;PSS3S
bağırtı N;ACC;DEF;PL
nəticə N;LOC;SG
vertolyot N;ACC;DEF;SG
xəritə N;GEN;SG;PSS3S
süpürgə N;ACC;DEF;PL
beyin N;NOM;SG;PSS3S
bıçaq N;DAT;PL;PSS2S
mənzərə N;ABL;SG;PSS1S
sümük N;NOM;SG;PSS3P
kəfgir N;LOC;PL;PSS1S
bıçaq N;NOM;PL;PSS2S
bəbək N;GEN;DEF;PL
namaz N;ACC;PL;PSS2P
rəngləmək V;PROG;PL;3;PRS
ensiklopediya N;ABL;PL
vəziyyət N;ACC;SG;PSS1S
müzakirə N;ABL;SG;PSS1S
ördək N;ACC;DEF;PL
sünnət N;ACC;DEF;PL
at N;ACC;DEF;SG
gecə N;ACC;DEF;SG
yağış N;ABL;SG
fəaliyyət N;DAT;PL;PSS1S
qəlb N;ACC;SG;PSS3S
penis N;DAT;SG;PSS3P
xəzinə N;GEN;PL;PSS1S
dəvəquşu N;GEN;DEF;SG
dayanacaq N;ACC;DEF;SG
dırnaq N;ABL;PL;PSS2S
süngü N;NOM;PL;PSS2P
öpüş N;ACC;DEF;PL
düşmən N;ABL;PL;PSS2S
söyüd N;LOC;SG
balıq N;GEN;DEF;PL
mələk N;LOC;PL;PSS3P
oğraş N;ACC;DEF;PL
qəlb N;LOC;PL;PSS2S
mismar N;NOM;PL
penis N;DAT;SG;PSS2S
dağ N;ACC;DEF;SG
ana N;GEN;PL;PSS2P
alça N;ABL;SG;PSS3P
kraliça N;DAT;SG;PSS3P
müzakirə N;GEN;PL;PSS2P
hörümçək N;ACC;SG;PSS3S
geodeziya N;ABL;PL
bozbaş N;ACC;DEF;PL
fəlsəfə N;GEN;PL;PSS3P
yarasa N;ABL;PL
ereksiya N;GEN;PL;PSS3P
alət N;NOM;SG;PSS3S
arxiv N;DAT;PL;PSS2S
kraliça N;GEN;SG;PSS2P
qonşu N;ACC;DEF;PL
dəvə N;ABL;SG
tilişkə N;LOC;SG
biçin N;ABL;PL
günbəz N;NOM;PL
kölgə N;LOC;PL;PSS3S
vəziyyət N;GEN;SG;PSS2S
dırnaq N;ACC;SG;PSS2S
kölgə N;GEN;PL;PSS3P
əjdəha N;NOM;PL
fəaliyyət N;GEN;DEF;PL
alça N;ACC;SG;PSS1S
dinozavr N;ACC;DEF;PL
düşman N;ACC;PL;PSS2P
mənzərə N;DAT;PL;PSS2P
kraliça N;GEN;SG;PSS3P
düşmən N;DAT;SG;PSS1S
rəhbər N;NOM;SG;PSS3S
bacı N;NOM;PL;PSS2S
keçi N;GEN;DEF;PL
fleyta N;ACC;DEF;PL
oğraş N;ABL;PL
piano N;ACC;DEF;PL
birlik N;ACC;DEF;SG
göl N;NOM;PL
qoxu N;LOC;PL
vəziyyət N;ABL;SG;PSS1S
yemiş N;GEN;SG;PSS2S
sarımsaq N;ACC;DEF;SG
minarə N;LOC;SG
piano N;ABL;SG
oturmaq V;PL;3;FUT
yəhudi N;GEN;DEF;SG
dalğa N;ACC;SG;PSS2P
mənzərə N;ACC;PL;PSS2S
kömək N;LOC;PL
ana N;NOM;SG
qardaş N;DAT;PL;PSS3P
kərgədan N;ABL;PL
balıq N;ACC;DEF;SG
qan N;LOC;SG
cib N;GEN;DEF;PL
gülüş N;GEN;SG;PSS3P
gülüş N;LOC;PL;PSS3P
uşaqlıq N;ABL;PL;PSS3S
dırnaq N;ACC;DEF;PL
göydələn N;GEN;DEF;PL
fəlsəfə N;LOC;PL;PSS2P
tərcümə N;GEN;PL;PSS1S
fəlsəfə N;ABL;SG;PSS3P
kraliça N;DAT;PL;PSS3S
yemiş N;GEN;SG;PSS3P
son N;LOC;PL
ana N;ACC;PL;PSS3S
amfiteatr N;ABL;PL
vertolyot N;ABL;SG
meyvə N;NOM;SG
uşaqlıq N;ABL;PL;PSS1S
yarasa N;ACC;DEF;SG
qarpız N;ACC;DEF;PL
nar N;ACC;DEF;SG
bıçaq N;DAT;PL;PSS1S
dövri cədvəl N;GEN;DEF;SG
geyşa N;NOM;PL
gülmək V;SG;1;FUT
ox N;ACC;DEF;SG
şahmat N;LOC;PL
ərik N;ACC;SG;PSS2P
xəritə N;GEN;SG;PSS3P
arxiv N;DAT;SG;PSS3P
meyvə N;ABL;PL
açar N;DAT;SG;PSS1S
mələk N;LOC;SG;PSS2P
quş N;NOM;SG
dələ N;ACC;DEF;SG
qəlb N;ACC;PL;PSS2S
vaza N;GEN;PL;PSS2S
uşaqlıq N;DAT;SG;PSS2S
leşyeyən N;LOC;SG
fəaliyyət N;GEN;SG;PSS2P
qoxu N;DAT;SG;PSS3P
ana N;ABL;SG;PSS1S
saqqal N;NOM;SG
ayaq N;ACC;DEF;SG
dirsək N;ACC;PL;PSS2S
beyin N;NOM;PL;PSS3P
tərcümə N;GEN;PL;PSS3P
dirsək N;ACC;SG;PSS3S
ana N;DAT;PL;PSS1S
öpüş N;ABL;PL
ərik N;GEN;PL;PSS3P
dinozavr N;NOM;PL
kəpənək N;GEN;DEF;SG
xəritə N;ABL;SG
süngü N;ACC;PL;PSS2S
şaftalı N;GEN;SG;PSS1S
şaftalı N;ACC;SG;PSS3P
ürək N;ABL;SG
günbəz N;LOC;SG
düşman N;NOM;SG;PSS3P
dalğa N;DAT;SG;PSS2P
penis N;ABL;SG;PSS2S
kaktus N;GEN;DEF;PL
fəlsəfə N;ABL;SG;PSS2S
tarix N;LOC;SG
mətbəx N;ACC;DEF;SG
sümük N;DAT;SG;PSS2P
ərik N;ABL;SG;PSS3S
kömək N;LOC;PL;PSS2P
dinozavr N;ACC;SG;PSS2P
tərcümə N;ACC;DEF;SG
alça N;NOM;SG;PSS3P
vəziyyət N;GEN;SG;PSS2P
rəngləmək V;PROG;SG;3;PRS
alça N;NOM;PL;PSS3S
ayaqqabı N;ACC;DEF;SG
lüğət N;NOM;PL
dinozavr N;LOC;PL;PSS1S
xəritə N;DAT;SG;PSS3P
vəziyyət N;NOM;SG
ana N;ACC;SG;PSS2S
yoldaş N;LOC;PL
isim N;ACC;DEF;PL
uşaqlıq N;GEN;SG;PSS2P
içmək V;PROG;SG;2;PRS
bacı N;GEN;PL;PSS3P
rəng N;ABL;PL
zürafə N;ABL;SG
vaza N;ACC;PL;PSS3P
yoldaş N;GEN;DEF;PL
müzakirə N;NOM;PL;PSS3S
alət N;LOC;PL;PSS1S
yemiş N;ACC;PL;PSS2S
hüceyrə N;ACC;PL;PSS3P
şkaf N;ABL;PL
isim N;ACC;DEF;PL
alça N;ABL;SG;PSS3S
minarə N;ABL;SG
soğan N;ACC;DEF;PL
tısbağa N;ACC;DEF;SG
dinozavr N;ACC;DEF;SG
məktəb N;ABL;SG;PSS3P
kəfgir N;ABL;SG;PSS2P
sözlük N;ACC;DEF;SG
müzakirə N;ABL;PL
süngü N;ACC;PL;PSS3S
dəmir N;GEN;DEF;PL
mənzərə N;LOC;PL;PSS1S
böyrək N;GEN;DEF;PL
baldız N;ACC;DEF;PL
ereksiya N;DAT;SG;PSS3P
qəlb N;GEN;SG;PSS3S
köpük N;GEN;DEF;PL
göbək N;GEN;DEF;PL
açar N;GEN;PL;PSS1S
ördək N;ACC;DEF;PL
qardaş N;LOC;PL
günəbaxan N;LOC;PL
dirsək N;LOC;PL;PSS3S
buynuz N;NOM;SG;PSS2S
qaloş N;LOC;SG
şaftalı N;LOC;SG;PSS2S
hüceyrə N;ABL;SG;PSS2P
dünya N;DAT;SG;PSS2P
isim N;NOM;PL
qulaq N;NOM;SG;PSS3P
dayanacaq N;ABL;SG
ərik N;ACC;DEF;SG
göz N;LOC;SG;PSS3P
yemiş N;ACC;SG;PSS3P
qulaq N;NOM;SG
gümüş N;LOC;SG
bülbül N;ABL;PL
dirsək N;GEN;PL;PSS1S
yaquar N;NOM;PL
od N;ACC;DEF;PL
meymun N;ABL;SG
bahar N;NOM;SG
mələk N;ACC;SG;PSS2P
zürafə N;ABL;PL
vəziyyət N;GEN;PL;PSS3P
kəfgir N;LOC;PL;PSS3P
köynək N;LOC;PL;PSS3P
silah N;ACC;DEF;PL
kəlbətin N;LOC;SG
oraq N;ACC;DEF;SG
düşmən N;ABL;PL;PSS1S
fəlsəfə N;ABL;SG;PSS3P
mətbəx N;ACC;DEF;PL
qoxu N;ACC;DEF;SG
mənzərə N;LOC;PL;PSS3P
əqrəb N;NOM;PL;PSS3S
bağban N;ACC;DEF;PL
hüceyrə N;DAT;PL;PSS3P
ereksiya N;LOC;PL
qoxu N;NOM;PL;PSS3S
buynuz N;DAT;PL;PSS3S
penis N;ABL;PL
damcı N;GEN;DEF;SG
xəbər N;LOC;SG
əqrəb N;LOC;SG;PSS3P
kişi N;LOC;SG
vaza N;NOM;PL;PSS3P
ad N;ABL;PL
kölgə N;ACC;SG;PSS2P
göydələn N;NOM;SG
motosiklet N;ACC;DEF;SG
düşmən N;ABL;SG;PSS3S
xəzinə N;ABL;SG;PSS1S
qələbə N;GEN;DEF;PL
tilişkə N;ABL;PL
bıçaq N;NOM;SG
bülbül N;NOM;PL
dalğa N;ABL;SG;PSS3P
dalğa N;DAT;SG;PSS3S
saqqal N;LOC;SG
uçan xalça N;GEN;DEF;PL
qulaq N;LOC;PL;PSS2P
ana N;ABL;SG;PSS3P
bazar N;GEN;DEF;SG
müzakirə N;GEN;DEF;PL
rəngləmək V;PL;2;FUT
xəzinə N;NOM;SG;PSS2S
tərcümə N;NOM;SG;PSS1S
tələbə N;DAT;PL;PSS1S
dırnaq N;GEN;SG;PSS2S
uşaqlıq N;NOM;PL;PSS1S
göz N;ACC;SG;PSS3P
köynək N;ACC;SG;PSS3P
hörümçək N;GEN;SG;PSS2S
alça N;ABL;PL;PSS2P
penis N;DAT;SG;PSS3S
göz N;ACC;SG;PSS3S
arxiv N;LOC;PL
düşmən N;ACC;SG;PSS3P
kəfgir N;GEN;SG;PSS3P
almaz N;LOC;SG
penis N;ACC;PL;PSS3P
ət N;ABL;PL
penis N;ACC;DEF;PL
əqrəb N;LOC;SG;PSS3S
qoxu N;NOM;PL;PSS2P
buynuz N;ABL;SG
kamerton N;LOC;SG
skripka N;ACC;DEF;SG
yardım N;LOC;PL
qoxu N;LOC;PL;PSS3P
qaz N;LOC;SG
biçin N;GEN;DEF;PL
qardaş N;ACC;DEF;SG
kömək N;ACC;DEF;PL
namaz N;GEN;DEF;SG
qulaq N;DAT;PL;PSS3P
hüceyrə N;GEN;DEF;PL
məktəb N;ACC;PL;PSS3P
üz N;NOM;PL
mehrab N;GEN;DEF;PL
zoğ N;ABL;SG
xəzinə N;NOM;SG;PSS3P
bazar N;ACC;DEF;PL
dirsək N;NOM;SG;PSS2P
düşmən N;ABL;SG
gön N;LOC;SG
ada N;ABL;SG
xalqa N;NOM;PL
öpüş N;GEN;DEF;SG
xəritə N;DAT;PL;PSS3P
bardaq N;GEN;DEF;PL
gülüş N;NOM;SG;PSS3P
surə N;NOM;PL
dünya N;ABL;PL;PSS2P
bibər N;ACC;DEF;SG
qızılgül N;LOC;PL
fəlsəfə N;GEN;SG;PSS1S
təyyarə N;LOC;PL
göz N;ACC;SG;PSS2S
ürək N;LOC;SG
mələk N;NOM;PL;PSS2P
gülüş N;ABL;SG;PSS3S
at N;ACC;DEF;SG
mənzərə N;DAT;PL;PSS1S
xəzinə N;ACC;PL;PSS2P
qəlb N;GEN;SG;PSS3P
qardaş N;ACC;DEF;PL
qəlb N;NOM;SG;PSS3P
onurğa N;DAT;SG;PSS3S
xarici dil N;ACC;DEF;PL
kişi N;NOM;SG
tüstü N;GEN;DEF;SG
penis N;ABL;PL;PSS3P
xəzinə N;ABL;SG;PSS3P
kölgə N;GEN;PL;PSS2S
uşaqlıq N;ACC;SG;PSS3P
ovçu N;LOC;SG
məktəb N;DAT;SG;PSS1S
ər N;NOM;PL
əqrəb N;ACC;PL;PSS3P
qadın N;ACC;DEF;SG
uşaqlıq N;DAT;SG;PSS2P
qaranquş N;LOC;PL
süd N;LOC;SG
uşaqlıq N;GEN;SG;PSS3P
tilişkə N;ACC;DEF;PL
skripka N;LOC;SG
məktəb N;NOM;SG;PSS3P
qardaş N;ACC;DEF;PL
kölgə N;LOC;PL;PSS3P
bıçaq N;ABL;SG
meymun N;ACC;DEF;SG
düşman N;NOM;PL;PSS1S
ana N;NOM;SG;PSS2P
mələk N;GEN;SG;PSS3P
ərik N;GEN;SG;PSS3P
geodeziya N;ACC;DEF;PL
tələbə N;LOC;SG;PSS2S
buynuz N;ACC;PL;PSS3P
şaftalı N;LOC;SG;PSS3S
məktəb N;LOC;SG;PSS3P
milçək N;GEN;DEF;PL
hüceyrə N;LOC;PL;PSS3S
pişik N;NOM;PL
arxiv N;LOC;SG;PSS1S
söyüd N;ABL;SG
ereksiya N;GEN;DEF;SG
düşmən N;ABL;SG;PSS2P
birlik N;LOC;SG
işıq N;GEN;DEF;SG
dirsək N;LOC;SG
müzakirə N;NOM;PL
şirkət N;ACC;DEF;PL
alça N;ABL;SG;PSS3P
şamisen N;NOM;PL
xəritə N;ABL;PL;PSS3S
qəlb N;ABL;SG;PSS2S
yemiş N;DAT;SG;PSS3P
kölgə N;ACC;PL;PSS2P
dırnaq N;DAT;SG;PSS2S
uşaqlıq N;ACC;SG;PSS3P
əjdaha N;GEN;DEF;SG
mələk N;GEN;PL;PSS3P
futbolçu N;LOC;PL
ulduz N;LOC;PL
yarasa N;GEN;DEF;PL
fleyta N;ACC;DEF;SG
kəfgir N;GEN;DEF;PL
qərənfil N;ABL;SG
vaza N;DAT;PL;PSS3S
quş N;ACC;DEF;SG
kraliça N;DAT;SG;PSS3S
cəsəd N;ABL;SG
qulaq N;DAT;SG;PSS2S
meymun N;GEN;DEF;SG
qaçmaq V;PL;3;PST
əjdaha N;ACC;DEF;PL
psixoterapiya N;ACC;DEF;SG
qoxu N;DAT;SG;PSS3P
avqust N;ACC;DEF;SG
xəzinə N;NOM;SG;PSS3S
səbəb N;ABL;PL
müzakirə N;NOM;PL;PSS3P
avtomobil N;LOC;SG
darçın N;ACC;DEF;SG
qəlb N;LOC;PL;PSS3P
ereksiya N;NOM;SG;PSS3P
kəlbətin N;GEN;DEF;PL
namaz N;NOM;PL;PSS1S
çəyirtkə N;LOC;SG
qardaş N;LOC;PL;PSS3S
qardaş N;ABL;SG;PSS3P
gülmək V;SG;2;FUT
damcı N;ABL;SG
ox N;GEN;DEF;PL
qoxu N;DAT;PL;PSS1S
hörümçək N;ABL;SG;PSS2P
vaza N;ABL;SG;PSS1S
qarpız N;GEN;DEF;PL
kraliça N;NOM;SG
üzüm N;NOM;PL
sünnət N;ABL;SG
qardaşlıq N;ACC;DEF;PL
dırnaq N;GEN;DEF;PL
günəş N;ABL;SG
fəaliyyət N;ACC;SG;PSS1S
kilsə N;LOC;SG
göz N;ACC;PL;PSS3S
qardaşlıq N;GEN;DEF;PL
amfiteatr N;NOM;PL
şirkət N;ACC;DEF;SG
alət N;LOC;SG;PSS1S
mətbəx N;GEN;DEF;SG
açar N;ACC;DEF;PL
damcı N;NOM;SG
buynuz N;LOC;PL
dırnaq N;GEN;SG;PSS2P
tülpan N;LOC;SG
dırnaq N;ACC;PL;PSS2S
dövri cədvəl N;ACC;DEF;SG
köynək N;DAT;PL;PSS2S
vaza N;GEN;DEF;SG
dinozavr N;ABL;SG;PSS3P
dalğa N;ACC;DEF;SG
mələk N;NOM;SG;PSS2S
qəlb N;DAT;PL;PSS2P
otaq N;LOC;PL
dinozavr N;NOM;PL;PSS3P
keçi N;ACC;DEF;SG
dinozavr N;DAT;SG;PSS3S
ana N;ACC;PL;PSS3P
inək N;NOM;SG
köynək N;DAT;SG;PSS2S
bağırtı N;ACC;DEF;SG
tərcümə N;NOM;PL;PSS3S
fəlsəfə N;ABL;PL;PSS3P
oyuncaq N;ABL;SG
futbolçu N;ACC;DEF;SG
jurnalist N;ABL;SG
dalğa N;ACC;DEF;SG
xəritə N;NOM;SG;PSS2S
kəpənək N;ABL;SG
kərpic N;ABL;SG
buynuz N;ACC;SG;PSS3S
gümüş N;GEN;DEF;SG
bacı N;NOM;PL;PSS1S
dirsək N;ABL;SG;PSS1S
fəaliyyət N;ABL;SG
onurğa N;GEN;SG;PSS2P
fəlsəfə N;LOC;PL;PSS3S
osminoq N;GEN;DEF;PL
gümüş N;ACC;DEF;PL
gəmi N;NOM;SG
çəyirtkə N;GEN;DEF;SG
dinozavr N;LOC;SG;PSS1S
canavar N;ACC;DEF;SG
fəlsəfə N;ACC;PL;PSS2S
xəzinə N;GEN;SG;PSS3S
qulaq N;NOM;PL;PSS3P
fəlsəfə N;GEN;SG;PSS3S
üzüm N;ABL;PL
ərik N;ABL;SG
hüceyrə N;ACC;PL;PSS3P
qardaş N;NOM;PL
dalğa N;NOM;SG;PSS2P
cümə N;ABL;PL
arxiv N;DAT;SG;PSS3S
qaçmaq V;PROG;SG;3;PRS
isim N;NOM;SG
mənzərə N;GEN;PL;PSS2S
qarğa N;ABL;SG
yemiş N;ABL;PL;PSS2P
ərik N;ACC;PL;PSS1S
buynuz N;ABL;PL;PSS3S
bacı N;ACC;SG;PSS2S
hüceyrə N;ACC;DEF;PL
alov N;GEN;DEF;SG
arxiv N;LOC;PL;PSS3S
xəritə N;NOM;SG;PSS3S
ereksiya N;NOM;SG
bürc N;NOM;PL
rəhbər N;GEN;PL;PSS3S
dalğa N;ACC;SG;PSS1S
göz N;ABL;SG;PSS3P
günəbaxan N;NOM;PL
axşam N;NOM;SG
quş N;LOC;SG
əjdəha N;LOC;PL
qulaq N;GEN;PL;PSS2S
ət N;LOC;SG
köynək N;ABL;PL
avtomobil N;ACC;DEF;PL
sözlük N;ACC;DEF;PL
ağlamaq V;PROG;PL;2;PRS
xəzinə N;LOC;SG;PSS3S
boya N;ABL;SG
cib N;ABL;SG
açar N;ABL;PL;PSS2P
bəbək N;ACC;DEF;PL
kağız N;LOC;PL
axşam N;ABL;SG
vaza N;ABL;SG
xəzinə N;NOM;SG;PSS2P
kamerton N;GEN;DEF;SG
ana N;NOM;PL;PSS3P
ereksiya N;LOC;SG;PSS3P
ereksiya N;DAT;PL;PSS3S
uçan xalça N;NOM;SG
buynuz N;DAT;PL;PSS3P
rəng N;LOC;PL
ərik N;NOM;PL;PSS3S
piano N;LOC;SG
onurğa N;GEN;SG;PSS1S
səbəb N;NOM;PL
həqiqət N;ACC;DEF;PL
vaza N;ACC;PL;PSS2S
uşaqlıq N;LOC;SG;PSS2P
gecə N;ACC;DEF;PL
kölgə N;GEN;SG;PSS2P
qələbə N;LOC;SG
ereksiya N;ABL;PL;PSS3P
pişik N;NOM;SG
uşaqlıq N;LOC;SG;PSS3S
qardaş N;DAT;PL;PSS1S
dünya N;LOC;SG
kölgə N;LOC;PL;PSS2P
xəzinə N;ABL;SG;PSS2P
ön N;NOM;SG
birlik N;GEN;DEF;SG
rəngləmək V;SG;2;FUT
qarışqa N;NOM;SG
geyşa N;GEN;DEF;PL
gülmək V;SG;3;PST
baldız N;NOM;PL;PSS3P
amfiteatr N;GEN;DEF;PL
kağız N;GEN;DEF;SG
vəziyyət N;ACC;PL;PSS3P
gülüş N;NOM;SG;PSS3S
bacı N;ACC;PL;PSS2P
qardaş N;GEN;DEF;SG
mənzərə N;GEN;SG;PSS1S
din N;ACC;DEF;PL
bibər N;ABL;PL
gülüş N;LOC;SG;PSS3P
motosiklet N;ACC;DEF;PL
son N;GEN;DEF;SG
köynək N;NOM;SG
film N;ACC;DEF;SG
xəritə N;ACC;PL;PSS3S
açar N;GEN;SG;PSS3S
beyin N;GEN;PL;PSS3P
tələbə N;GEN;SG;PSS3S
portağal N;NOM;PL
açar N;ABL;SG;PSS2P
rəhbər N;ACC;SG;PSS2P
baldız N;DAT;PL;PSS2S
təsadüf N;LOC;SG
süngü N;LOC;SG;PSS1S
kərtənkələ N;NOM;PL
can N;GEN;DEF;PL
ədəbiyyat N;GEN;DEF;PL
düşman N;LOC;PL;PSS2P
əqrəb N;DAT;PL;PSS3P
bacı N;ACC;DEF;PL
yaquar N;ACC;DEF;SG
tısbağa N;ACC;DEF;PL
siçan N;NOM;SG
bıçaq N;DAT;SG;PSS3P
son N;ACC;DEF;SG
dondurma N;ABL;PL
xəritə N;NOM;SG
kölgə N;GEN;SG;PSS3P
kömək N;ACC;DEF;PL
ana N;GEN;SG;PSS3P
bağırtı N;GEN;DEF;SG
fəaliyyət N;DAT;SG;PSS2S
gön N;ACC;DEF;PL
alça N;ACC;SG;PSS2S
gön N;LOC;PL
bulud N;NOM;PL
hörümçək N;GEN;SG;PSS3P
düşərgə N;ACC;DEF;PL
bacı N;DAT;SG;PSS2P
ürək N;NOM;SG
tələbə N;NOM;PL;PSS3P
bağırtı N;ACC;DEF;SG
ayaqqabı N;NOM;PL
möcüzə N;NOM;SG
kölgə N;ABL;PL;PSS2S
geyşa N;NOM;SG
baldız N;LOC;PL;PSS2S
bıçaq N;ACC;SG;PSS1S
dodaq N;ABL;PL
onurğa N;NOM;PL;PSS2P
alça N;ABL;PL;PSS2S
fakültə N;LOC;SG
kərgədan N;NOM;PL
xəzinə N;NOM;PL;PSS2S
sivilizasiya N;GEN;DEF;PL
sivilizasiya N;ACC;DEF;SG
nəfəs N;GEN;DEF;PL
dalğa N;LOC;SG;PSS3P
sevgi N;NOM;SG
buynuz N;LOC;SG;PSS2S
ereksiya N;NOM;PL;PSS1S
qardaş N;NOM;PL;PSS3P
kölgə N;LOC;PL;PSS2S
düşman N;LOC;SG;PSS3P
düşman N;ACC;PL;PSS1S
kölgə N;GEN;SG;PSS1S
səviyyə N;GEN;DEF;SG
peyğəmbər N;NOM;SG
kəlbətin N;ACC;DEF;SG
kraliça N;DAT;PL;PSS3P
maşın N;ABL;SG
dirsək N;NOM;PL;PSS2P
göydələn N;ACC;DEF;PL
lüğət N;ACC;DEF;PL
qardaş N;NOM;SG;PSS3P
jurnalist N;LOC;PL
yardım N;ACC;DEF;PL
qızılgül N;LOC;SG
cücü N;GEN;DEF;PL
çiyələk N;NOM;SG
bulud N;NOM;SG
gülüş N;ACC;PL;PSS1S
ox N;ABL;SG
qoxu N;DAT;PL;PSS2P
ayaq N;LOC;PL
müzakirə N;GEN;SG;PSS2S
düşman N;DAT;PL;PSS2P
penis N;NOM;SG;PSS1S
qoxu N;NOM;SG;PSS3P
yemiş N;LOC;PL;PSS2S
tərcümə N;ACC;SG;PSS3S
sabun N;NOM;SG
qılınc N;ACC;DEF;PL
sümük N;ABL;PL;PSS1S
qapı N;ABL;SG
fırtına N;LOC;PL
gülüş N;NOM;PL;PSS3P
əqrəb N;ACC;PL;PSS1S
ereksiya N;NOM;PL
gülüş N;GEN;PL;PSS3P
xarici dil N;ACC;DEF;SG
dünya N;GEN;PL;PSS3P
peyğəmbər N;GEN;DEF;PL
vəziyyət N;LOC;PL;PSS3P
dayanacaq N;ABL;PL
can N;LOC;SG
şəhər N;ACC;DEF;SG
mənzərə N;LOC;SG;PSS3S
qoxu N;ACC;DEF;SG
çiyələk N;ACC;DEF;PL
rəhbər N;ACC;SG;PSS1S
onurğa N;ACC;SG;PSS2P
düşman N;GEN;PL;PSS1S
beyin N;ABL;PL;PSS3P
rəhbər N;DAT;SG;PSS2P
dalğa N;ACC;SG;PSS2S
hüceyrə N;DAT;SG;PSS3P
qaçmaq V;SG;3;PST
ana N;LOC;SG;PSS3P
qardaş N;ABL;PL
günbəz N;LOC;PL
süngü N;ACC;PL;PSS3P
köynək N;ABL;PL;PSS3S
göz N;GEN;PL;PSS3P
meyvə N;ACC;DEF;SG
rəhbər N;ACC;SG;PSS3P
mələk N;ABL;PL
tilişkə N;NOM;SG
qardaş N;LOC;PL;PSS2S
mələk N;LOC;PL;PSS1S
düşman N;ABL;PL;PSS3P
kömək N;DAT;PL;PSS3P
göydələn N;GEN;DEF;SG
at N;ABL;PL
onurğa N;ACC;PL;PSS3P
şaftalı N;ACC;PL;PSS2P
ağlamaq V;PROG;PL;3;PRS
ana N;GEN;DEF;SG
kölgə N;GEN;SG;PSS3P
fırtına N;GEN;DEF;PL
tərcümə N;DAT;PL;PSS1S
almaz N;LOC;PL
səhifə N;GEN;DEF;SG
penis N;ACC;SG;PSS2P
xəbər N;GEN;DEF;SG
dalğa N;ACC;PL;PSS2P
üzüm N;ACC;DEF;SG
xəstəlik N;GEN;DEF;SG
ön N;ACC;DEF;SG
ər N;LOC;SG
göyərçin N;ACC;DEF;SG
dalğıc N;NOM;SG
dirsək N;ACC;DEF;PL
dirsək N;GEN;PL;PSS2P
tülkü N;LOC;SG
dırnaq N;DAT;PL;PSS3P
göydələn N;ACC;DEF;SG
fəaliyyət N;DAT;PL;PSS2P
məktəb N;ACC;DEF;SG
böyürtkən N;NOM;SG
osminoq N;ABL;PL
xəritə N;LOC;PL;PSS3S
süngü N;ABL;PL;PSS3P
kompüter N;GEN;DEF;SG
buynuz N;LOC;SG
bacı N;GEN;SG;PSS1S
qəlb N;ACC;SG;PSS2S
məktəb N;NOM;PL;PSS2S
hörümçək N;ABL;SG;PSS2S
qardaş N;ABL;PL;PSS3S
bulud N;ACC;DEF;PL
həftə N;ABL;PL
düşman N;ACC;SG;PSS3P
amfiteatr N;ACC;DEF;SG
bürc N;ACC;DEF;PL
xəritə N;LOC;SG;PSS1S
kaktus N;LOC;PL
hüceyrə N;ACC;PL;PSS2S
sünnət N;LOC;SG
bazar N;ACC;DEF;SG
fleyta N;GEN;DEF;SG
şaftalı N;DAT;PL;PSS3P
mehrab N;ACC;DEF;SG
nəfəs N;LOC;PL
yemiş N;DAT;SG;PSS1S
qardaşlıq N;ACC;DEF;PL
düşmən N;GEN;SG;PSS3S
şkaf N;ACC;DEF;SG
hörümçək N;DAT;SG;PSS2P
xloroplast N;ABL;PL
dırnaq N;DAT;SG;PSS1S
kəfgir N;GEN;PL;PSS3P
baldız N;LOC;PL;PSS3S
bıçaq N;LOC;SG
baldız N;GEN;SG;PSS1S
rəhbər N;LOC;SG
namaz N;GEN;PL;PSS3P
son N;NOM;PL
can N;ACC;DEF;SG
ərik N;GEN;PL;PSS2P
təbiət N;ABL;PL
silah N;LOC;SG
süpürgə N;ACC;DEF;PL
kömək N;GEN;SG;PSS2P
müzakirə N;ACC;PL;PSS2P
qəlb N;LOC;SG;PSS3P
göz N;GEN;PL;PSS2S
yaquar N;GEN;DEF;SG
qoxu N;ABL;SG;PSS2S
ürək N;ACC;DEF;SG
qarpız N;ACC;DEF;SG
qonşu N;GEN;DEF;PL
tələbə N;GEN;PL;PSS3S
bıçaq N;LOC;PL
psixoterapiya N;NOM;PL
ereksiya N;LOC;PL;PSS3P
milçək N;ABL;SG
onurğa N;DAT;SG;PSS3P
kəfgir N;NOM;SG;PSS2P
film N;ABL;SG
xəzinə N;GEN;SG;PSS3P
qoxu N;ABL;SG;PSS3P
qaranquş N;ABL;PL
şaftalı N;ACC;DEF;SG
vəziyyət N;ABL;PL;PSS3P
xəbər N;GEN;DEF;PL
dovşan N;ACC;DEF;PL
penis N;LOC;PL;PSS3P
mələk N;NOM;PL;PSS2S
oyuncaq N;ACC;DEF;SG
dünya N;NOM;PL
minarə N;GEN;DEF;PL
mələk N;DAT;SG;PSS3P
göz N;DAT;SG;PSS3P
onurğa N;ABL;PL;PSS3S
ər N;NOM;SG
fəaliyyət N;ABL;SG;PSS2S
tələbə N;GEN;SG;PSS3P
möcüzə N;ACC;DEF;PL
biçin N;ACC;DEF;SG
pendir N;NOM;PL
namaz N;GEN;PL;PSS2P
sümük N;ACC;SG;PSS2P
tələbə N;DAT;SG;PSS3P
qaçmaq V;PROG;SG;1;PRS
rəndə N;ACC;DEF;SG
köynək N;LOC;SG;PSS3P
qəlb N;ABL;SG
uşaqlıq N;NOM;PL;PSS2S
möcüzə N;ABL;SG
oraq N;ACC;DEF;PL
busə N;LOC;PL
yoldaş N;LOC;SG
gülüş N;DAT;PL;PSS2S
düşman N;DAT;SG;PSS1S
yemiş N;GEN;PL;PSS3P
körfəz N;ACC;DEF;PL
dinozavr N;GEN;PL;PSS3S
boya N;ACC;DEF;PL
əqrəb N;ACC;PL;PSS2P
penis N;DAT;SG;PSS3P
kərtənkələ N;GEN;DEF;SG
dırnaq N;GEN;PL;PSS3P
həqiqət N;NOM;SG
gön N;NOM;PL
sümük N;ACC;PL;PSS2P
köynək N;GEN;SG;PSS3P
oyuncaq N;ACC;DEF;SG
xəzinə N;LOC;SG;PSS3P
alça N;ABL;PL
müzakirə N;ABL;SG;PSS3P
ilan N;LOC;PL
qulaq N;LOC;SG
fəlsəfə N;ACC;PL;PSS3P
dolab N;GEN;DEF;PL
baldız N;LOC;PL;PSS1S
mehrab N;ABL;PL
keçi N;ACC;DEF;SG
kəfgir N;GEN;PL;PSS2S
düşman N;ACC;DEF;SG
fəlsəfə N;DAT;SG;PSS3S
göbək N;ACC;DEF;PL
dırnaq N;NOM;PL;PSS2P
pilləkən N;ACC;DEF;PL
qardaş N;LOC;PL;PSS1S
tərcümə N;ACC;PL;PSS2S
vaza N;NOM;PL
xəritə N;DAT;SG;PSS3P
fəlsəfə N;DAT;PL;PSS3P
zəfəran N;LOC;SG
temperatur N;ABL;SG
dinozavr N;NOM;SG
tərcümə N;LOC;SG;PSS3S
göz N;ACC;DEF;PL
üz N;ABL;PL
kölgə N;ACC;SG;PSS3S
həqiqət N;GEN;DEF;PL
bağırtı N;ACC;DEF;PL
onurğa N;NOM;SG;PSS3S
baldız N;NOM;PL;PSS2P
alça N;DAT;PL;PSS1S
kaktus N;ACC;DEF;SG
əqrəb N;LOC;SG;PSS1S
mizrab N;LOC;PL
buynuz N;GEN;PL;PSS3P
xər N;GEN;DEF;SG
skripka N;ABL;SG
vəziyyət N;ABL;SG;PSS3P
hörümçək N;NOM;PL;PSS2S
baldız N;LOC;SG;PSS3S
diqqət N;ABL;PL
ensiklopediya N;GEN;DEF;PL
yemiş N;ACC;PL;PSS3S
qələbə N;LOC;PL
təzyiq N;LOC;PL
dünya N;LOC;SG;PSS1S
uşaqlıq N;DAT;PL;PSS3S
dayanacaq N;ACC;DEF;PL
buynuz N;LOC;PL;PSS3S
bağırsaq N;GEN;DEF;PL
amfiteatr N;LOC;SG
şaftalı N;NOM;PL;PSS3S
qardaş N;ACC;SG;PSS2P
arxiv N;GEN;SG;PSS3P
dirsək N;ABL;SG;PSS3P
dibçək N;ACC;DEF;SG
buynuz N;NOM;SG;PSS1S
dirsək N;LOC;SG;PSS3S
cəsəd N;LOC;SG
açar N;GEN;SG;PSS2S
hüceyrə N;NOM;PL;PSS1S
sarımsaq N;ABL;PL
yağış N;ACC;DEF;PL
vəziyyət N;ABL;PL;PSS3S
kəfgir N;ABL;SG;PSS3P
kəfgir N;GEN;SG;PSS3S
mənzərə N;LOC;PL;PSS3P
təyyarə N;LOC;SG
qardaş N;GEN;SG;PSS2S
vaza N;LOC;PL;PSS3P
qəlb N;LOC;PL;PSS3S
uşaqlıq N;ACC;PL;PSS2P
vertolyot N;ACC;DEF;PL
düşmən N;LOC;PL
arxiv N;ACC;SG;PSS2S
fahişə N;ACC;DEF;SG
tülpan N;ABL;SG
şahmat N;ABL;PL
təbiət N;GEN;DEF;SG
istifadəçi N;GEN;DEF;PL
dovşan N;ABL;SG
süngü N;ABL;SG;PSS2P
ana N;DAT;SG;PSS3S
hörümçək N;DAT;PL;PSS3S
qəlsəmə N;LOC;SG
bayraq N;ABL;PL
düşərgə N;ABL;PL
mismar N;LOC;SG
tərcümə N;NOM;PL;PSS2S
kəlbətin N;ABL;SG
cücü N;ABL;PL
ana N;DAT;SG;PSS1S
motosiklet N;LOC;PL
canavar N;NOM;SG
sümük N;ABL;SG;PSS3P
film N;NOM;PL
yəhudi N;NOM;SG
biçin N;GEN;DEF;SG
qatar N;ACC;DEF;SG
əqrəb N;NOM;SG
fəaliyyət N;ABL;PL;PSS3S
tısbağa N;ABL;SG
bağban N;GEN;DEF;PL
mədrəsə N;LOC;PL
can N;ABL;SG
silah N;ACC;DEF;PL
dırnaq N;NOM;SG;PSS2S
dirsək N;NOM;PL;PSS1S
vəziyyət N;NOM;SG;PSS3S
qızılgül N;ACC;DEF;PL
ilan N;ACC;DEF;PL
saqqal N;ACC;DEF;PL
ördək N;ABL;PL
dinozavr N;NOM;PL;PSS2P
ərik N;GEN;SG;PSS2S
nəticə N;ACC;DEF;SG
dinozavr N;ABL;PL;PSS3S
beyin N;ABL;SG;PSS3P
dəyirman N;ACC;DEF;SG
dirsək N;LOC;SG;PSS3P
müzakirə N;ACC;PL;PSS3S
xoruz N;LOC;SG
açar N;NOM;PL;PSS2S
mələk N;ABL;SG;PSS3P
süngü N;LOC;PL;PSS2P
diqqət N;ABL;SG
uşaqlıq N;ACC;SG;PSS3S
sivilizasiya N;NOM;PL
namaz N;LOC;SG;PSS1S
baldız N;ABL;SG
qonşu N;ABL;SG
süngü N;DAT;SG;PSS3P
müzakirə N;LOC;PL;PSS3P
qulaq N;LOC;PL;PSS1S
açar N;ACC;DEF;SG
böyürtkən N;LOC;SG
|
318fbf92bdbf113229d5884a9e469fff31063df3 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/m2sci/lhsvarsnames.sci | 126a581a01c81ba3cf553086b7c548b12ebee5bd | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 369 | sci | lhsvarsnames.sci | function varargout=lhsvarsnames()
// Copyright INRIA
varargout=list([])
lhs0=lhs
[lhs,rhs]=argn(0)
for k=1:lhs0
varname=lst(ilst+lhs0+1-k)(2)
p=find(varname==vnms(:,2))
if p<>[] then
varname=vnms(p,1),
else
if funptr(varname)<>0 then varname='%'+varname,end
end
if lhs>1 then
varargout(k)=varname
else
varargout(1)(k,1)=varname
end
end
|
cc090f7add8fcd6847d3eafbdf35f6c14e869d8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /29/CH3/EX3.2.4/exa3_2_4.sce | 7713c55212b95332f4bc9b54f5ec7e6996d03f64 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 480 | sce | exa3_2_4.sce | //Caption:transfer_function
// example 3.2.4
//page 36
// we have defined parallel and series function which we are going to use here
//exec parallel.sce;
//exec series.sce;
syms G1 G2 G3 H1 H2;
//shift the take off point placed before G1 to after block G1
a=G3/G1;
b=parallel(a,G2);
//shift the take off point before block b towards right side of same block
c=1/b;
d=series(H1,c);
e=series(G1,b);
g=parallel(H2,d);
y=e/(1+e*g);
y=simple (y);
disp(y,"C(s)/R(s)=") |
5ebe7caec1932a359e809c6d8424cb2a37d379f5 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH9/EX9.5/5.sce | 350304629e298ba7b9d28e00bfcadceff84ee372 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 425 | sce | 5.sce | clc
p=1*10^5; //Pa
T=298; //K
M_H2=2;
M_O2=32;
R0=8314;
// ratio = V_H2/V_O2=2;
ratio=2;
disp("(i) The mass of O2 required")
//Let the mass of O2 per kg of H2 = x kg
m_H2=1; //kg
n_H2=m_H2/M_H2;
// n_O2=x/M_O2
x=M_O2*n_H2/ratio;
disp("Mass of O2 per kg of H2=")
disp(x)
disp("kg")
disp("(ii) The volume of the container")
n_O2=x/M_O2;
n=n_H2 + n_O2;
V=n*R0*T/p;
disp("V=")
disp(V)
disp("m^3") |
38ee341db2642c6ad82b8806f5e0d55f9dd03a2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /1052/CH23/EX23.7/237.sce | b7d224c84983069bfc08a61cb371b77d652489f6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 2,215 | sce | 237.sce | clc;
//Example 23.7
//page no 340
printf("\n Example 23.7 page no 340\n\n");
// In a plant manufacturing ivory soap detergent explodes one windy day
//we have to calculate the distance from the plant where the soap particles will start to deposit and where they will cease to deposit
//the smallest particle wll travel the greatest distance while the largest will travel the least distance
//for the minimumdistance ,we use largest particle
D_l=3.28e-3//largest diameter,ft
g=32.174//grav. acc.
SG=0.8//specific gravity of soap particle
rho_w=62.4
rho_p=SG*rho_w//density of particle
rho_a=0.0752//density of given atmosphere,lb/ft^3
meu=1.18e-5//viscosity
K_l = D_l*(g*(rho_p-rho_a)*rho_p/(meu^2))^(1/3)//dimensionless constant
printf("\n dimensionless constant K_l=%f ",K_l);
//value of K indicates the intermediate range applies
//the settling velocity is given by
v_l=0.153*g^0.71*D_l^1.14*rho_p^0.71/(meu^0.43*rho_a^0.29)
printf("\n settling velocity v_l=%f ft/s",v_l);
H=400//vertical height blowen by particle,ft
t_l=H/v_l//descent time
v_w=20//wind velocity in miles/h
L=t_l*v_w*(5280/3600)//horizontal distance travelled by particles
printf("\n descent time t_l=%f second\n horizontal distance L=%f ft",t_l,L);
//for the minimum distance we use smallest particle
D_s=6.89e-6//diameter of smallest particle,ft
K_s=D_s*(g*(rho_p-rho_a)*rho_a/(meu^2))^(1/3)
printf("\n dimensionless constant K_s=%f ",K_s);
//velocity is in the stokes regime and is given by
v_s=g*D_s^2*rho_p/(18*meu)
printf("\n settling velocity v_s=%f ft/s",v_s);
t_s=H/v_s//descent time
L_s=t_s*v_w*(5280/3600)//horizontal distance travelled
printf("\n descent time t_s=%f s\nhorizontal distance travelled by smallest particle L_s=%f ft",t_s,L_s);
m=100*2000//mass of particles
V_act=m/rho_p//actual volume of particles
e=0.5//void fraction
V_b=V_act/e//bulk volume
printf("\ actual volume V_act=%f ft^3\nbulk volume V_b=%f ",V_act,V_b);
L_d=L_s-L//length of drop area
printf("\n L_d=%f ",L_d);
W=100//width ,ft
A_d=L_d*W//deposition area
H_d=V_b/A_d//deposition height
printf("\n deposition height H_d=%f ft",H_d);
//deposition height can be ,at bestt, described asa sprinkling
|
5ecb8db9fe0e1af178186a6a36aab5076dd8f97c | 449d555969bfd7befe906877abab098c6e63a0e8 | /767/CH1/EX1.5.5/Ch1Exa1_5_5.sci | c54e3213d59cefc0365b2e9f1ab294b736a4e9dd | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 627 | sci | Ch1Exa1_5_5.sci | // Scilab code Exa1.5.5 : Calculation of mass defect and packing fraction from given data Page : 38 (2011)
amu = 931.49; // Atomic mass unit, MeV
M_p = 1.007825; // Mass of proton, amu
M_n = 1.008663; // Mass of neutron, amu
A = 2; // Mass number of deutron, amu
M_D = 2.014103; // Mass of deuteron nucleus, amu
M_Defect = (M_p+M_n-M_D)*amu; // Mass defect of the nucleus, MeV
P_fraction = (M_D - A)/A; // Packing fraction of nucleus
printf("\n Mass defect %4.2f MeV\n Packing fraction %7.5f",M_Defect,P_fraction);
// Result
// Mass defect 2.22 MeV
// Packing fraction 0.00705 |
57b7137a5033c0973b6608bb717b304cd47513b8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1217/CH5/EX5.11/Exa5_11.sce | bbea9bf96e0c74c7fcd8d9954ffb4fbfdf327da6 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 280 | sce | Exa5_11.sce | // Exa 5.11
clc;
clear;
close;
// given data
T=100;// in uSec
C=15;//in
R=T*10^-6/(1.1*C*10^-9);//in ohm
disp(R/1000,"To obtain a output pulse at 100uSec rsistor required in Kohm is :")
//Note : in the question 15uF is given but in the solution 15nF is used in the book |
291e1e2fd1adb2019b4d88e1db2d97a6e31afcbc | c90039f74887835096a93884110d643c4823e530 | /doc/oficial/dados para treinamento RNA/RNA_ANALISE_TECNICA/Indicador/Volume/OBV/RNA_OBV.sce | 67ab74e38485164efd96b285b1c841f27e59f665 | [] | no_license | igorlima/CellInvest | da991366b329b5d8021e9b949d7b726023489ec8 | c5411247e504b8a8d0ad77d32d41bbd2aee39930 | refs/heads/master | 2020-04-06T03:40:05.614164 | 2012-10-23T12:58:20 | 2012-10-23T12:58:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 254 | sce | RNA_OBV.sce | path_rna_obv = get_absolute_file_path('RNA_OBV.sce');
N_OBV = getN( path_rna_obv + "\N_OBV.txt" );
W_OBV = getW( path_rna_obv, "OBV" );
function saida_da_rna = rna_obv( alpha_obv )
saida_da_rna = ann_FF_run( [alpha_obv], N_OBV, W_OBV );
endfunction
|
72cd10cd4f89cc5a72be80a201610fac65d73519 | 449d555969bfd7befe906877abab098c6e63a0e8 | /278/CH14/EX14.12/ex_14_12.sce | ebf3d3d4cc409c13842c0670edec6d54ebd06306 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 855 | sce | ex_14_12.sce | //determine dia of the shaft
clc
//solution
//given
P=20000//W
N=200//rpm
W=900//N
L=2500//mm
t=42//N/mm^2
fb=56//N/mm^2
T=P*60000/(2*%pi*200)//N-mm
M=W*L/4//N-mm//max monet
Te=sqrt(T^2 + M^2)//N-mm
//Te=(%pi/16)*t*d^3
d1=(Te/8.25)^(1/3)//mm
printf("the dia of shaft is,%f mm",d1)
Me=0.5*[M + sqrt(M^2 + T^2)]//N-mm
//Me=(%pi/32)*fb*d2^3
d2=(Me/5.5)^(1/3)//mm
printf("the dia oif shaft is,%f mm\n",d2)
printf("taking large value i.e d=d1=55 mm in consideration\n")
//dia by applying gradually applied load
//using table 14.2
Km=1.5
Kl=1
Te1=sqrt((Km*M)^2 + (Kl*T)^2)//N-mm
//Te=(%pi/16)*t*d^3
d1=(Te1/8.25)^(1/3)//mm
printf("the dia of shaft is,%f mm",d1)
Me1=0.5*[M*Km + sqrt((Km*M)^2 + (Kl*T)^2)]//N-mm
//Me1=(%pi/32)*fb*d2^3
d2=(Me1/5.5)^(1/3)//mm
printf("the dia oif shaft is,%f mm\n",d2)
printf("taking large value i.e d=d1=60 mm in consideration\n") |
eb8a36823462876a5ff45b7e58c7f7780961b4b6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH10/EX10.18/10_18.sce | be0d4189ae7113b6d886367e6d1cc3dece94565c | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 124 | sce | 10_18.sce | clear; clc; close;
B1 = 1*10^(6);
Avd = 20*10^3;
f1 = B1;
fc = f1/Avd;
disp(fc,'Cutoff frequency(Hertz) = ');
|
4aa8b4e2e1d5c89304af3c5d131d93c06bf14320 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set4/s_College_Physics(volume_2)_R._A._Serway_And_J._S._Faughn_2072.zip/College_Physics(volume_2)_R._A._Serway_And_J._S._Faughn_2072/CH18/EX18.6/Ex18_6.sce | 6b96af6d4b03a901262bc4fa44e65eb4658ccc29 | [] | no_license | hohiroki/Scilab_TBC | cb11e171e47a6cf15dad6594726c14443b23d512 | 98e421ab71b2e8be0c70d67cca3ecb53eeef1df6 | refs/heads/master | 2021-01-18T02:07:29.200029 | 2016-04-29T07:01:39 | 2016-04-29T07:01:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 233 | sce | Ex18_6.sce | errcatch(-1,"stop");mode(2);//Example 18.6
R=8*10^5//in ohms
C=5*10^-6//in Farad
t=R*C
disp(t,"Constant of the circuit in s=")
Q=C*12
disp(Q,"Charge in columb=")
q=0.632*Q
disp(q,"Charge in columb when capacitance 63.2%=")
exit();
|
438d3663b18aedaa7b816500d5bf197baea46012 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3137/CH1/EX1.19/Ex1_19.sce | 7c468e6049706347e4d7e727dd9d2de9ae181834 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 632 | sce | Ex1_19.sce | //Initilization Of Variables
a=1 //Lower Limit oF the Integral
b=3 //Upper Limit of the Integral
n=10 //Interval of the integral
//Calculation
//Using Trapezoidal Rule for Intergration
function[I1]=Trap_Composite1(f,a,b,n)
h=(b-a)/n
t=linspace(a,b,n+1)
I1=(h/2)*((2*sum(f(t)))-f(t(1))-f(t(n+1)))
endfunction
deff('[y]=f(t)','y=t^2')
function[I2]=Trap_Composite2(f1,a,b,n)
h=(b-a)/n
t=linspace(a,b,n+1)
I2=(h/2)*((2*sum(f1(t)))-f1(t(1))-f1(t(n+1)))
endfunction
deff('[y1]=f1(t)','y1=t*2')
z=b-a
//Result
clc
printf('%fi+%fj%fk',Trap_Composite1(f,a,b,n),Trap_Composite2(f1,a,b,n),-z)
|
9225acd2d8b6da58243fcc5a945477a3285ac52d | 449d555969bfd7befe906877abab098c6e63a0e8 | /503/CH7/EX7.47/ch7_47.sci | c584d629e992b1aac58bb9c7dc0457c9ffecea1b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 416 | sci | ch7_47.sci | //to calculate armature current,speed and value of external resistance in field ckt
clc;
V=250;
Ia=5;
Ra=.6;
n=1000;
k=(V-Ia*Ra)/(2*%pi*n/60);
T=100;
Ia=T/k;disp(Ia,'armature current(A)');
w_m=(V-Ia*Ra)/k;
n=(60*w_m)/(2*%pi);disp(n,'speed(rpm)');
Rf=150;
If=V/Rf;
kk=k/If;
Iaa=44.8;
nn=1200;
Iff=(V-Iaa*Ra)/(kk*2*%pi*nn/60);
Rftot=V/Iff;
Rfext=Rftot-Rf;
disp(Rfext,'external resistance(ohm)'); |
db6caabc2e56706fedd04b2b0b13c8db149e4936 | 845c8ae1a329364b6568f3529318bf19080ab941 | /hdl/Match256.tst | 2818f0e6012282bcfe6ed9c4ff090efff8e71ffd | [
"Apache-2.0"
] | permissive | DChristianson/FPGA_lpu | 133a843e4b1df4f225aee01438930d7c42659d08 | 86f6cdc9b0aecfbdccd6ed23b73a5026776db18f | refs/heads/main | 2023-02-26T04:53:41.561411 | 2021-02-04T23:52:08 | 2021-02-04T23:52:08 | 336,049,181 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,806 | tst | Match256.tst | load Match256.hdl,
output-file Match256.out,
compare-to Match256.cmp,
output-list time%S1.4.1 in%D1.3.1 caddr%D1.3.1 load%B2.1.2 cmp%B2.1.2 test%B2.1.2 match%B2.1.2;
set in 48,
set caddr 0,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 48,
set caddr 1,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 49,
set caddr 2,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 44,
set caddr 3,
set cmp 0,
set test 1,
tick,
eval,
output;
tock,
eval,
output;
set in 48,
set test 0,
set caddr 0,
set load 1,
tick,
eval,
output;
tock,
eval,
output;
set in 48,
set caddr 1,
set load 1,
tick,
eval,
output;
tock,
eval,
output;
set in 49,
set caddr 2,
set load 1,
tick,
eval,
output;
tock,
eval,
output;
set in 48,
set caddr 0,
set load 0,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 48,
set caddr 1,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 49,
set caddr 2,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 44,
set test 1,
set caddr 3,
set cmp 0,
tick,
eval,
output;
tock,
eval,
output;
set in 48,
set caddr 0,
set test 0,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 48,
set caddr 1,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 49,
set caddr 2,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 49,
set caddr 3,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 44,
set test 1,
set caddr 4,
set cmp 0,
tick,
eval,
output;
tock,
eval,
output;
set in 48,
set caddr 0,
set cmp 1,
set test 0,
tick,
eval,
output;
tock,
eval,
output;
set in 48,
set caddr 1,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 49,
set caddr 2,
set cmp 1,
tick,
eval,
output;
tock,
eval,
output;
set in 44,
set test 1,
set caddr 3,
set cmp 0,
tick,
eval,
output;
tock,
eval,
output;
|
35c84068f97397fbbf117353a4a8ae9c6685797a | 449d555969bfd7befe906877abab098c6e63a0e8 | /626/CH3/EX3.6/3_6.sce | aa688b9a3a738443a1f6a5f4fd33a57696bfe838 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 143 | sce | 3_6.sce | clear;
clc;
close;
disp("Example 3.6")
V9=250 //in m/s
V0=200 //in m/s
//Calculations:
e=2/(1+(V9/V0))
disp(e,"Propulsive efficiency:") |
6e398af246d5eed5772188ca77c0571359ce6f5e | 449d555969bfd7befe906877abab098c6e63a0e8 | /3720/CH7/EX7.6/Ex7_6.sce | c9f93e1369431257f369cb554866263c45223514 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 619 | sce | Ex7_6.sce | //Example 7_6
clc;clear;
// Given values
// Properties
//For air at atmospheric pressure and at T = 25°C
T=25;//degree celsius
rho_p=1.184;//kg/m^3
mu_p=1.849*10^-5;//kg/m.s
V_p=50;//Speed in mi/h
//Similarly,at T=5°C
T=5;//degree celsius
rho_m=1.269;//kg/m^3
mu_m=1.754*10^-5;// kg/m.s
V_m=221;//mi/h
// (L_p/L_m)=5 The ratio of Lp to Lm is known because the prototype is five times larger than the scale model
F_dm=21.2;//The average drag force on the model in lbf
// Calculation
F_dp=F_dm*(rho_p/rho_m)*(V_p/V_m)^2*(5)^2;
printf("The aerodynamic drag force on the prototype=%0.1f lbf",F_dp);
|
06882aea2607d0cbb689d3195f45be13d548e291 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2219/CH3/EX3.13/Ex3_13.sce | 53e00a22dd7c86bc97a968547f9e537d91d79e83 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 611 | sce | Ex3_13.sce | // Chapter 3 example 13
//------------------------------------------------------------------------------
clc;
clear;
// Given data
f = 1*10^9; // frequency in Hz
a = 5*10^-2; // wall separation
c = 3*10^8; // velocity of EM wave in m/s
m = 1; // for TE10
n = 0; // for TE10
// Calculations
// lamda0 = 2/sqrt((m/a)^2 + (n/b)^2)
lamda0 = (2*a)/m
lamda_frspc = c/f;
if lamda_frspc > lamda0 then
mprintf('1 Ghz signal cannot propagate in TE10 mode')
else
mprintf('1 Ghz signal can propagate in TE10 mode');
end
|
bb51c6759b8db037a457d986d9c7490e79b24ad9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1958/CH13/EX13.8/Chapter13_example8.sce | 24512ac0f3e7bf3bcbcb4b9538ab663f18bfc707 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 313 | sce | Chapter13_example8.sce | clc
clear
//Input data
L=(20*10^-3)//Inductance in H
Q=8//Q factor
f=1000//Frequency in Hz
//Calculations
R=(2*3.14*f*L)/Q//Resistance in ohms
C=(1/((2*3.14*f)^2*L))/10^-6//Capacitance in microF
//Output
printf('Capacitance and resistance of coil is %3.2f micro F and %3.1f ohms respectively',C,R)
|
9fdbf98b2144cbe18d76d785bf7b99e486e6f016 | 1489f5f3f467ff75c3223c5c1defb60ccb55df3d | /tests/test_diff_3_g.tst | 984b424d3c0f66e0665da57913abb533896d4bc4 | [
"MIT"
] | permissive | ciyam/ciyam | 8e078673340b43f04e7b0d6ac81740b6cf3d78d0 | 935df95387fb140487d2e0053fabf612b0d3f9e2 | refs/heads/master | 2023-08-31T11:03:25.835641 | 2023-08-31T04:31:22 | 2023-08-31T04:31:22 | 3,124,021 | 18 | 16 | null | 2017-01-28T16:22:57 | 2012-01-07T10:55:14 | C++ | UTF-8 | Scilab | false | false | 100 | tst | test_diff_3_g.tst | <<<<<< (0)
a
>>>>>> (1)
x0
x1
>>>>>> (2)
======
b
<<<<<< (0)
c
>>>>>> (1)
>>>>>> (2)
y0
y1
======
d
|
ada048c586a30608f843e9a188b47c6e7d4a46b9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2657/CH2/EX2.18/Ex2_18.sce | cbbcf28995213f00fe18f02e2d7469ca43ed62ac | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 1,206 | sce | Ex2_18.sce | //Calculations on dual combustion cycle
clc,clear
//Given:
r=15 //Compression ratio
P1=1,P3=55 //Pressure at 1, 3 in bar
T1=27+273 //Temperature at 1 in K
g=1.4 //Specific heat ratio(gamma)
cp=1.005 //Specific heat at constant pressure in kJ/kgK
cv=0.718 //Specific heat at constant volume in kJ/kgK
//Solution:
//Refer fig 2.31
T2=T1*r^(g-1) //Temperature at 2 in K
P2=P1*r^g //Pressure at 2 in bar
alpha=P3/P2 //Constant volume pressure ratio
T3=T2*(P3/P2) //Temperature at 3 in K
Q1_v=cv*(T3-T2) //Heat supplied at constant volume in kJ/kg
T4=poly(0,"T4") //Defining temperature at 4 as unknown in K
//Given, heat supplied at constant volume, Q1_v is twice of heat supplied at constant pressure, Q1_p
Q1_p=cp*(T4-T3) //Heat supplied at constant pressure in kJ/kg
T4=roots(Q1_v-2*Q1_p) //Temperature at 4 in K
rho=T4/T3 //Cut off ratio
e=r/rho //Expansion ratio
T5=T4/e^(g-1) //Temperature at 5 in K
eta=1-(T5-T1)/((T3-T2)+g*(T4-T3)) //Thermal efficiency
eta=round(100*eta)
//Results:
printf("\n The constant volume pressure ratio, alpha = %.2f",alpha)
printf("\n The cut off ratio, rho = %.2f",rho)
printf("\n The thermal efficiency of the cycle, eta = %d percent\n\n",eta)
|
bed1224d6bd118e1770fa4143b0a1bfbf95dabc8 | 527c41bcbfe7e4743e0e8897b058eaaf206558c7 | /Positive_Negative_test/Netezza-Base-DataMining/SP_LinRegrFB-NZ-01.tst | 66c9d50f2da30ed44de96cfd22d3772fb88584e9 | [] | no_license | kamleshm/intern_fuzzy | c2dd079bf08bede6bca79af898036d7a538ab4e2 | aaef3c9dc9edf3759ef0b981597746d411d05d34 | refs/heads/master | 2021-01-23T06:25:46.162332 | 2017-07-12T07:12:25 | 2017-07-12T07:12:25 | 93,021,923 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 14,146 | tst | SP_LinRegrFB-NZ-01.tst | -- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Netezza
--
-- Copyright (c): 2014 Fuzzy Logix, LLC
--
-- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC.
-- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC.
-- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade
-- secret or copyright law. Dissemination of this information or reproduction of this material is
-- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC.
--
--
-- Functional Test Specifications:
--
-- Test Category: Data Mining Functions
--
-- Test Unit Number: SP_LinRegrFB-NZ-01
--
-- Name(s): SP_LinRegrFB
--
-- Description: Stored Procedure which performs FastBackward Linear Regression and stores the results in predefined tables.
--
-- Applications:
--
-- Signature: SP_LinRegrFB(IN TableName VARCHAR(100),
-- IN SpecID VARCHAR(30),
-- IN HighestpAllow1 DOUBLE PRECISION ,
-- IN HighestpAllow2 DOUBLE PRECISION ,
-- IN Note VARCHAR(255))
--
-- Parameters: See Documentation
--
-- Return value: VARCHAR(64)
--
-- Last Updated: 07-10-2017
--
-- Author: <gandhari.sen@fuzzyl.com>, <Anurag.Reddy@fuzzyl.com>,<kamlesh.meena@fuzzylogix.com>
-- BEGIN: TEST SCRIPT
\time
--.run file=../PulsarLogOn.sql
------ Table used for regression
--SELECT a.VarID,
-- COUNT(*)
--FROM tblLinRegr a
--GROUP BY a.VarID
--ORDER BY 1;
CREATE TABLE tblLinRegrTest (
ObsID BIGINT,
VarID INTEGER,
Value DOUBLE PRECISION)
DISTRIBUTE ON(ObsID);
---- BEGIN: NEGATIVE TEST(s)
---------------------------------------------------------------------------------------
---------------------- Negative test cases --------------------------------------------
---------------------------------------------------------------------------------------
---Case 1a
--- Incorrect table name
EXEC SP_LinRegrFB('tblLinRegr_NotExist','', 0.50, 0.10, 'HelloWorld' );
---Case 1b
--- NULL table name
EXEC SP_LinRegrFB(NULL,'', 0.50, 0.10, 'HelloWorld' );
---Case 1c
--- Empty string as table name
EXEC SP_LinRegrFB('','', 0.50, 0.10, 'HelloWorld' );
---Case 2a
---- No data in table
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.10, 'HelloWorld' );
---Case 3
---- Populate data in table
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a;
---- Incorrect column names
---Case 3a
--Not Applicable for Netezza.
--Case4a
---Incorrect Values for Highest Prob1 allowed
EXEC SP_LinRegrFB('tblLinRegrTest','', -0.50, 0.10, 'HelloWorld' );
--Case4b
---Incorrect Values for Highest Prob1 allowed
EXEC SP_LinRegrFB('tblLinRegrTest','', 1.50, 0.10, 'HelloWorld' );
--Case4c
---Incorrect Values for Highest Prob allowed
EXEC SP_LinRegrFB('tblLinRegrTest','', 0, 0.10, 'HelloWorld' );
--Case4d
---Incorrect Values for Highest Prob allowed
EXEC SP_LinRegrFB('tblLinRegrTest','', 1.0, 0.10, 'HelloWorld' );
--Case5a
---Incorrect Values for Highest Prob2 allowed
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, -0.10, 'HelloWorld' );
--Case5b
---Incorrect Values for Highest Prob2 allowed
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 10.10, 'HelloWorld' );
--Case5c
---Incorrect Values for Highest Prob2 allowed
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0, 'HelloWorld' );
--Case5d
---Incorrect Values for Highest Prob allowed
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 1.0, 'HelloWorld' );
--Case 6a
---- Insert data without the intercept and dependent variable
DELETE FROM tblLinRegrTest ALL;
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE a.VarID > 0;
---- No dependent variable in table
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.10, 'HelloWorld' );
---Case 7a
---- Insert dependent variable only for some obs
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE a.VarID = -1
AND a.ObsID <= 10000;
---- No dependent variable for all observations
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.10, 'HelloWorld' );
--Case 8a
---- Insert intercept variable only for some obs
DELETE FROM tblLinRegrTest;
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE a.VarID <> 0;
INSERT INTO tblLinRegrTest
SELECT *
FROM tblLinRegr a
WHERE a.VarID = 0
AND a.ObsID <= 10000;
---- No intercept variable for all observations
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.10, 'HelloWorld' );
--Case 9a
---- Cleanup the intercept and insert the value 2 for intercept
DELETE FROM tblLinRegrTest
WHERE VarCol= 0;
INSERT INTO tblLinRegrTest
SELECT a.ObsID,
a.VarID,
2
FROM tblLinRegr a
WHERE a.VarID = 0;
---- Intercept not 0 or 1
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.10, 'HelloWorld' );
--Case 9aa
---- Cleanup the intercept and insert 1 and 0 for intercept
DELETE FROM tblLinRegrTest
WHERE VarCol= 0;
INSERT INTO tblLinRegrTest
SELECT a.ObsID,
a.VarID,
CASE WHEN a.ObsID <= 500 THEN 0 ELSE 1 END
FROM tblLinRegr a
WHERE a.VarID = 0;
---- Intercept value not unique
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.10, 'HelloWorld' );
--Case 10a
---- Cleanup the table
DELETE FROM tblLinRegrTest ;
---- Populate less rows than variables
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE a.ObsID <= 100;
---- Number of observations <= number of variables
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.10, 'HelloWorld' );
---Case 11 a
---- Cleanup the table and populate the data
DELETE FROM tblLinRegrTest ;
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a;
--- Repeat a row in the table
INSERT INTO tblLinRegrTest
SELECT a.ObsCol,
a.VarCol,
a.NumVal
FROM tblLinRegrTest a
WHERE a.VarCol = 10
AND a.ObsCol = 26;
---- Repeated data in table
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.10, 'HelloWorld' );
--Case 12a
---- Cleanup the table and populate
DELETE FROM tblLinRegrTest ;
INSERT INTO tblLinRegrTest
SELECT a.ObsID,
a.VarID * 2,
a.Num_Val
FROM tblLinRegr a
WHERE a.VarID > 0
UNION ALL
SELECT a.*
FROM tblLinRegr a
WHERE a.VarID IN (-1, 0);
---- Non consecutive variable IDs
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.10, 'HelloWorld' );
--Case 13 a
--Insert in fzzllinregrmodelvarspec all varids that are in the intable
---- Cleanup the table and populate
DELETE FROM tblLinRegrTest;
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE VARID <= 10;
DELETE FROM fzzllinregrmodelvarspec WHERE UPPER(SpecID) = UPPER('GSENTEST');
INSERT INTO fzzllinregrmodelvarspec
SELECT 'GSENTEST' , a.VarID, 'I'
FROM ( SELECT DISTINCT VarID
FROM tblLinRegrTest ) a;
--All varids included
EXEC SP_LinRegrFB('tblLinRegrTest','GSENTEST', 0.50, 0.10, 'HelloWorld' );
--Case 14a
DELETE FROM tblLinRegrTest;
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE VARID <= 10;
DELETE FROM fzzllinregrmodelvarspec WHERE UPPER(SpecID) = UPPER('GSENTEST');
INSERT INTO fzzllinregrmodelvarspec
SELECT 'GSENTEST' , a.VarID, 'X'
FROM ( SELECT DISTINCT VarID
FROM tblLinRegrTest ) a;
--All varids excluded
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.1, 'HelloWorld' );
-- END: NEGATIVE TEST(s)
--BEGIN: POSITIVE TEST(s)
---------------------------------------------------------------------------------------
---------------------- Positive test cases --------------------------------------------
---------------------------------------------------------------------------------------
--CASE 1 PROGRAM STALLS FOR LARGE DATA...JOIN PERFORMANCE NEEDS REVIEW...for now max allowable VarID is set it to varid < =100 for dense dataset
--Case 1
---- Cleanup the data and populate again
DELETE FROM tblLinRegrTest ;
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE VarID <=10;
SELECT a.VarID,
COUNT(*) AS cnt
FROM tblLinRegrTest AS a
GROUP BY 1
ORDER BY 1;
---- Perform regression with non-sparse data
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.1, 'HelloWorld' );
-- Display result
SELECT a.*
FROM fzzlLinRegrStats a,
(
SELECT a.AnalysisID
FROM fzzlLinRegrInfo a
WHERE Note='HelloWorld'
) b
WHERE a.AnalysisID = b.AnalysisID
ORDER BY 1, 2, 3;
SELECT a.*
FROM fzzlLinRegrCoeffs a,
(
SELECT a.AnalysisID
FROM fzzlLinRegrInfo a
WHERE Note='HelloWorld'
) b
WHERE a.AnalysisID = b.AnalysisID
ORDER BY 1,2,3;
--case 2
---- Cleanup the data and populate again, make the data sparse i.e., non-zero values
---- for all variables except dependent and intercept
DELETE FROM tblLinRegrTest;
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE a.VarID > 0
AND a.Num_Val <> 0
UNION ALL
SELECT a.*
FROM tblLinRegr a
WHERE a.VarID IN (-1, 0);
SELECT a.VarID,
COUNT(*) AS cnt
FROM tblLinRegrTest AS a
GROUP BY 1
ORDER BY 1;
---- Perform regression with sparse data
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.1, 'HelloWorld' );
-- Display result
SELECT a.*
FROM fzzlLinRegrStats a,
(
SELECT a.AnalysisID
FROM fzzlLinRegrInfo a
WHERE Note='HelloWorld'
) b
WHERE a.AnalysisID = b.AnalysisID
ORDER BY 1, 2, 3;
SELECT a.*
FROM fzzlLinRegrCoeffs a,
(
SELECT a.AnalysisID
FROM fzzlLinRegrInfo a
WHERE Note='HelloWorld'
) b
WHERE a.AnalysisID = b.AnalysisID
ORDER BY 1, 2,3;
--case 3
---Case 3a
--- Cleanup the data and populate again with intercept value as 0
---JIRA TDFL-464 raised
--gives error in matrix inversion
DELETE FROM tblLinRegrTest ;
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE VarID <> 0 ;
INSERT INTO tblLinRegrTest
SELECT a. ObsID,
a.VarID,
0
FROM tblLinRegr a
WHERE VarID = 0 ;
SELECT a.VarID,
COUNT(*) AS cnt
FROM tblLinRegrTest AS a
GROUP BY 1
ORDER BY 1;
---- Perform regression with intercept all 0s
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.1, 'HelloWorld' );
--error Inverting matrix
---JIRA TDFL -464 ..it's a RFC
---Case 3b
--- Cleanup the data and populate again with intercept value as 1
DELETE FROM tblLinRegrTest;
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE VarID <> 0
AND VarID <= 20 ;
INSERT INTO tblLinRegrTest
SELECT a. ObsID,
a.VarID,
1
FROM tblLinRegr a
WHERE VarID = 0 ;
SELECT a.VarID,
COUNT(*) AS cnt
FROM tblLinRegrTest AS a
GROUP BY 1
ORDER BY 1;
---- Perform regression with intercept value all 1s
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.1, 'HelloWorld' );
-- Display result
SELECT a.*
FROM fzzlLinRegrStats a,
(
SELECT a.AnalysisID
FROM fzzlLinRegrInfo a
WHERE Note='HelloWorld'
) b
WHERE a.AnalysisID = b.AnalysisID
ORDER BY 1, 2, 3;
SELECT a.*
FROM fzzlLinRegrCoeffs a,
(
SELECT a.AnalysisID
FROM fzzlLinRegrInfo a
WHERE Note='HelloWorld'
) b
WHERE a.AnalysisID = b.AnalysisID
ORDER BY 1, 2,3;
--Case 4
--Cross database access test case
---- Drop and recreate the test table in another database
DROP TABLE tblLinRegrTest;
CREATE TABLE tblLinRegrTest (
ObsID BIGINT,
VarID INTEGER,
Value DOUBLE PRECISION)
DISTRIBUTE ON(ObsID);
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE a.VarID > 0
AND VarID <=20
AND a.Num_Val <> 0
UNION ALL
SELECT a.*
FROM tblLinRegr a
WHERE a.VarID IN (-1, 0);
---- Perform regression with sparse data
EXEC SP_LinRegrFB('tblLinRegrTest','', 0.50, 0.1, 'HelloWorld' );
-- Display result
SELECT a.*
FROM fzzlLinRegrStats a,
(
SELECT a.AnalysisID
FROM fzzlLinRegrInfo a
WHERE Note='HelloWorld'
) b
WHERE a.AnalysisID = b.AnalysisID
ORDER BY 1, 2, 3;
SELECT a.*
FROM fzzlLinRegrCoeffs a,
(
SELECT a.AnalysisID
FROM fzzlLinRegrInfo a
WHERE Note='HelloWorld'
) b
WHERE a.AnalysisID = b.AnalysisID
ORDER BY 1, 2, 3;
--case 5
--run a test on sparse dataset with speciD
DELETE FROM fzzllinregrmodelvarspec WHERE UPPER(SpecID) = UPPER('GSENTEST');
INSERT INTO fzzllinregrmodelvarspec VALUES ('GSENTEST' ,9, 'I') ;
INSERT INTO fzzllinregrmodelvarspec VALUES ('GSENTEST' ,10, 'I') ;
INSERT INTO fzzllinregrmodelvarspec VALUES ('GSENTEST' ,13 , 'I') ;
INSERT INTO fzzllinregrmodelvarspec VALUES ('GSENTEST' ,185, 'I') ;
INSERT INTO fzzllinregrmodelvarspec VALUES ('GSENTEST' ,100, 'I') ;
INSERT INTO fzzllinregrmodelvarspec VALUES ('GSENTEST' ,19, 'X') ;
INSERT INTO fzzllinregrmodelvarspec VALUES ('GSENTEST' ,110, 'X') ;
INSERT INTO fzzllinregrmodelvarspec VALUES ('GSENTEST' ,18 , 'X') ;
INSERT INTO fzzllinregrmodelvarspec VALUES ('GSENTEST' ,105, 'X') ;
INSERT INTO fzzllinregrmodelvarspec VALUES ('GSENTEST' ,26, 'X') ;
DELETE FROM tblLinRegrTest;
INSERT INTO tblLinRegrTest
SELECT a.*
FROM tblLinRegr a
WHERE a.VarID > 0
AND a.Num_Val <> 0
UNION ALL
SELECT a.*
FROM tblLinRegr a
WHERE a.VarID IN (-1, 0);
--Test with SpecID
EXEC SP_LinRegrFB('tblLinRegrTest','GSENTEST', 0.50, 0.1, 'HelloWorld' );
-- Display result
SELECT a.*
FROM fzzlLinRegrStats a,
(
SELECT a.AnalysisID
FROM fzzlLinRegrInfo a
WHERE Note='HelloWorld'
) b
WHERE a.AnalysisID = b.AnalysisID
ORDER BY 1, 2, 3;
SELECT a.*
FROM fzzlLinRegrCoeffs a,
(
SELECT a.AnalysisID
FROM fzzlLinRegrInfo a
WHERE Note='HelloWorld'
) b
WHERE a.AnalysisID = b.AnalysisID
ORDER BY 1, 2, 3;
--Delete the specid used for testing
DELETE FROM fzzllinregrmodelvarspec WHERE UPPER(SpecID) = UPPER('GSENTEST');
---DROP the test table
DROP TABLE tblLinRegrTest;
DROP TABLE tblLinRegrTest;
-- END: POSITIVE TEST(s)
\time
-- END: TEST SCRIPT
|
527f186400954700dad524115ea1f5787c11dbe4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3673/CH1/EX1.16/Ex1_16.sce | 91557b9cfdff2325e53bc21f510445d41fd62c40 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 211 | sce | Ex1_16.sce | //Example 1_16 page no:18
clc
R1=10;//Resistance in ohm
R2=20;//Resistance in ohm
R3=30;//Resistance in ohm
R4=40;//Resistance in ohm
R=(1/R1+1/R2+1/R3+1/R4)
Rt=1/R
disp(Rt,"Total resistance (in ohm)")
|
ad18ef2ce7c26fca84b345fd6d1b5470d3bbd493 | 8217f7986187902617ad1bf89cb789618a90dd0a | /source/2.4.1/macros/mtlb/mtlb_hold.sci | 1829e72dde2fe8eebddba5772f3d8d8c077309c7 | [
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | clg55/Scilab-Workbench | 4ebc01d2daea5026ad07fbfc53e16d4b29179502 | 9f8fd29c7f2a98100fa9aed8b58f6768d24a1875 | refs/heads/master | 2023-05-31T04:06:22.931111 | 2022-09-13T14:41:51 | 2022-09-13T14:41:51 | 258,270,193 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 245 | sci | mtlb_hold.sci | function mtlb_hold(flag)
[lhs,rhs]=argn(0)
if rhs==0 then
if exists('%MTLBHOLD')==0 then
%MTLBHOLD=%t
else
%MTLBHOLD=~%MTLBHOLD
end
elseif convstr(flag)=='on' then
%MTLBHOLD=%t
else
%MTLBHOLD=%f
end
%MTLBHOLD=resume(%MTLBHOLD)
|
18d43400c890cac77304861b1646d631546ae0a6 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2420/CH2/EX2.10/2_10.sce | 076fb48a0f57b0ce7defc2a05a67f285fa60bc40 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 263 | sce | 2_10.sce | clc
clear
//Initialization of variables
Gf=11.57 //lb per lb of fuel
H=4.4/100
M=13.5/100
mr=700
mf=10000
mc=1 //lb
//calculations
pro=M+9*H
mrf=mr/mf
Aa=Gf+pro+mrf-mc
At=8.83
ea=(Aa-At)/At *100
//results
printf("Excess air = %.1f percent",ea)
|
d6e2285e509b465f0a9b94e26af844642a340d2e | 3cbdc2f272df05cfe8c6636d4504e9e3d2e4fe3f | /lib/drivers/hist2d.sce | 7428200ff5d381c714bcf3d516a4e9cb4a7029d9 | [] | no_license | bozhink/Code-Chunks | 74355eb4c0d423c2f6484226e564030dff798678 | 860b7b8f53089ed96fd0ebead2e3eec16fa377cb | refs/heads/master | 2020-12-24T06:19:04.343239 | 2019-11-13T14:09:15 | 2019-11-13T14:09:15 | 42,819,484 | 0 | 1 | null | 2019-11-13T14:09:16 | 2015-09-20T16:09:09 | HTML | UTF-8 | Scilab | false | false | 376 | sce | hist2d.sce | Lib = home + '/tmp/libhist2d.so'
ulink();
link(Lib,['hist2d','bhist2d','hist2ds','bhist2ds','bool2d'],'f');
m = 10000;
X = linspace(-%pi,%pi,m);
Y = sin(X);
nx = 15; ny = nx;
[Xmin,Xmax,Ymin,Ymax,bordX,bordY,iCount] = call('bhist2d',nx,1,'i',ny,2,'i',m,3,'i',X,4,'d',Y,5,'d','out',[1,1],6,'d',[1,1],7,'d',[1,1],8,'d',[1,1],9,'d',[1,nx],10,'d',[1,ny],11,'d',[nx,ny],12,'i'); |
acb4be71fc0a55c3c86eb370ef4ff90aeffd9d09 | 27be2dd7284eb8d71ea19e6b077993d7ff6afd16 | /ResolucaoRetroativa.sce | 95698afcf5f5425750d9ebfb97e33a470c3d026e | [] | no_license | mtxslv/numericalcomputation | 3b0ec7d1183c03c91c145de0fb1db9fff0a75e61 | 15ce639e5e370fb21fb1ce9878004270ee814e73 | refs/heads/master | 2020-03-26T06:10:14.116677 | 2019-11-14T11:41:38 | 2019-11-14T11:41:38 | 144,592,787 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 570 | sce | ResolucaoRetroativa.sce | /* Resolução Retroativo, por Mateus de Assis
Tal solução foi explicada e desenvolvida em sala de aula
Disciplina de Computação Numérica - ECT2401
*/
function x = ResRet(A,b) //resolução retroativa com matriz A e vetor independente b
[l,c] = size(A) //quantidade de linhas e colunas da matriz A
for i=l:-1:1
soma = 0;
for j=i+1:c
soma = soma + A(i,j)*x(j);
end
x(i) = (b(i)-soma)/A(i,i);
end
endfunction
// Para acessar uma posição (i,j) da matriz A, usamos a sintaxe A(i,j).
|
83ad12339e4531cbc420d3b06ec866102a9ba468 | 449d555969bfd7befe906877abab098c6e63a0e8 | /278/CH4/EX4.9/ex_4_9.sce | 4f79dd5cdd2a8c294d6435972508206081c1ca51 | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 249 | sce | ex_4_9.sce |
clc
//solution
//given
d=25//mm/diameter
P=2500//N/force
p=5//(N/mm^2)//bearing pressure
//A=l*d =l*25//(mm^2)//projected area of bearing
//p=P/A//pressure=force/area
//therefore
l=(P/(25*5))//mm//length
printf("the required length is,%f mm",l)
|
00f5b7938be2c12788981666d204a531927fe740 | 717ddeb7e700373742c617a95e25a2376565112c | /3460/CH3/EX3.8/ex3_8.sce | faf1df1e786042242ef6f87ac11d819248b1f756 | [] | no_license | appucrossroads/Scilab-TBC-Uploads | b7ce9a8665d6253926fa8cc0989cda3c0db8e63d | 1d1c6f68fe7afb15ea12fd38492ec171491f8ce7 | refs/heads/master | 2021-01-22T04:15:15.512674 | 2017-09-19T11:51:56 | 2017-09-19T11:51:56 | 92,444,732 | 0 | 0 | null | 2017-05-25T21:09:20 | 2017-05-25T21:09:19 | null | UTF-8 | Scilab | false | false | 286 | sce | ex3_8.sce | Ic=8;//given carrier current
It=8.95;//given current
//part a
M=((2*It*It)/(Ic*Ic))-2;//temporary variable
m=sqrt(M);//modulation factor
disp(m,'modulation factor is=');
//part b
x=(m*m/2)+1;//temporary variable
It=Ic*sqrt(x);//total current
disp(It,'total current is=');
|
c204aa8e67c45c4cefca96c7e31ad4f2068c4383 | bacd6919260d728f4316702bbe1edf811810bede | /legacy/37.one.good/console/Untitled3_response.sce | 916c22424064745b03f348fd79d4b000b17eb3b1 | [] | no_license | vopl/sp | 332d8c2ff536fc5d8772ff2f3fbeca9b50c47641 | a4313f4d7af47cc3132d7546947d4d668c7e487e | refs/heads/master | 2020-04-16T02:09:36.036424 | 2016-10-05T18:08:30 | 2016-10-05T18:08:30 | 65,293,458 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 414 | sce | Untitled3_response.sce | stacksize('max');
r1 = read("P:\finance\spectrumSeparator\nhel.Composite\20.1.win.10.test3cos\console\response", -1, 3);
clf;
//plot(r1(:,1),sqrt(r1(:,2).^2 + r1(:,3).^2),'m');
c1 = read("P:\finance\spectrumSeparator\nhel.Composite\20.1.win.10.test3cos\console\convolution", -1, 3);
plot(c1(:,1),sqrt(c1(:,2).^2 + c1(:,3).^2),'r');
plot(c1(:,1),c1(:,2),'k');
plot(c1(:,1),c1(:,3),'b');
|
8464be967dce2e913159b48339090802790e03cf | 449d555969bfd7befe906877abab098c6e63a0e8 | /2939/CH4/EX4.36/Ex4_36.sce | cea45b2be05e15007df1b0cfbfe6c002eed2426b | [] | no_license | FOSSEE/Scilab-TBC-Uploads | 948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1 | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df | refs/heads/master | 2020-04-09T02:43:26.499817 | 2018-02-03T05:31:52 | 2018-02-03T05:31:52 | 37,975,407 | 3 | 12 | null | null | null | null | UTF-8 | Scilab | false | false | 232 | sce | Ex4_36.sce |
//Ex4_36
clc;
// Given:
tPo=138;// days
n=24.86;// days
// Solution:
kPo = 0.693/tPo;
// using simplification logx=2(x-1)/(x+1)
kBi=((2 * 2.303)-(n*kPo))/n;
tBi=0.693/kBi;
printf("The half life of Bi is %f days",tBi)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.