blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 214 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 6 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 21
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 141k 586M ⌀ | star_events_count int64 0 30.4k | fork_events_count int64 0 9.67k | gha_license_id stringclasses 8
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 50
values | src_encoding stringclasses 23
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 1
class | length_bytes int64 5 10.4M | extension stringclasses 29
values | filename stringlengths 2 96 | content stringlengths 5 10.4M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
de819660446a87259e9c37e56d1f20ae0f658adc | 449d555969bfd7befe906877abab098c6e63a0e8 | /275/CH2/EX2.2.45/Ch2_2_45.sce | d75df86241d884b71952320e3bf3f9a4b89178d8 | [] | 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 | 207 | sce | Ch2_2_45.sce | clc
disp("Example 2.45")
printf("\n")
disp("Find the capacitor value for half wave rectifier")
Vdc=20
f=60
RL=500
r=0.1/(2*sqrt(3))
c=1/(2*sqrt(3)*r*f*RL)
printf("Capacitor value =\t%e farad\n",c)
|
605689b6c00ee9e7a03ac09017be426d6d2e3b1d | 449d555969bfd7befe906877abab098c6e63a0e8 | /2021/CH17/EX17.2/EX17_2.sce | 793761e7a6275679fbc91e6ab6bff5de44894fb1 | [] | 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 | 171 | sce | EX17_2.sce | //Finding of Discharge
//Given
rho=1000;
d=0.05;
P=1226.25;
//To Find
A=(%pi/4)*d^2;
V=P/(rho*A);
V1=sqrt(V);
Q=A*V1;
disp("Discharge ="+string(Q)+" m^3/sec");
|
eae33fe46334dc8716444da6a929d4a5b70733e5 | 3b9a879e67cbab4a5a4a5081e2e9c38b3e27a8cc | /Área 1/Aula 5/FatoracaoLU.sce | 949b17c1b6c2513f1c0904756bda89a99371205b | [
"MIT"
] | permissive | JPedroSilveira/numerical-calculus-with-scilab | 32e04e9b1234a0a82275f86aa2d6416198fa6c81 | 190bc816dfaa73ec2efe289c34baf21191944a53 | refs/heads/master | 2023-05-10T22:39:02.550321 | 2021-05-11T17:17:09 | 2021-05-11T17:17:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 794 | sce | FatoracaoLU.sce | A = eye(405,405)
for j = 1:405
for i = 1:405
if(abs(i - j) > 1)
A(j,i) = 1
else
A(j,i) = 0
end
end
end
function [L,A,C] = fatoraLU(A)
n = size(A,1)
L = eye(n,n)
C = 0
for j = 1:n-1
for i = j+1:n
L(i,j) = A(i,j)/A(j,j)
C = C + 1
A(i,j+1:n) = A(i,j+1:n) - L(i,j)*A(j,j+1:n)
if(A(i,j+1:n) == 0)
if(L(i,j) ~= 0 && A(j,j+1:n) ~= 0)
C = C + (n - j)
end
else
if(L(i,j) ~= 0 && A(j,j+1:n) ~= 0)
C = C + (n - j)*2
end
end
A(i,j) = 0 /*Para evitar erro de arredondamento*/
end
end
endfunction
[L,U,C] = fatoraLU(A)
|
a3fc360e1d4dc284ff11f2b4b4fd3f175b71119f | 0e1b45c07f0938ba9c8a003d6ae1cf2d8315efdb | /acmp.ru/335, Tri-prime numbers/c++/test-03.tst | d4e2ad1ddf89ae5ffebb693663e7b1809c47d8f0 | [] | no_license | Kot-Angens/acm | c85d8582c3e84f218415321743864b9680e01f2e | 05472eaa0fff7abb6679826085da5e0c990df4cb | refs/heads/master | 2021-01-24T22:36:05.159612 | 2012-10-02T13:51:56 | 2012-10-02T13:51:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 33 | tst | test-03.tst | 5
~~~~~~~~~~~~~~~~~~~~~~~~~~
374
|
9cdc80e43d0cc5094aa004b5d034ccf88f9ce929 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1793/CH9/EX9.4/9q4.sce | dce662989fd86a7f18c04e60267a7a79a0ce70b4 | [] | 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 | 216 | sce | 9q4.sce | clc
//initialisation of variables
C0= 0.357
H1= 30.5 //ft
H2= 5 //ft
w= 62.4 // lb/ft^3
D= 20
g= 112 // lb/ft^3
//calculations
G= g-w
FS= D*G/(C0*w*(H1-H2))
//results
printf ('safety factor = % 2f ',FS)
|
8fc8531d3707336f0a44a0769f8d35360f750d11 | 63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa | /test/0031.tst | 0262792262072d70e018695c86b78e358f73d7e7 | [] | no_license | fmeci/nfql-testing | e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c | 6b7d465b32fa50468e3694f63c803e3630c5187d | refs/heads/master | 2021-01-11T04:09:48.579127 | 2013-05-02T13:30:17 | 2013-05-02T13:30:17 | 71,239,280 | 0 | 0 | null | 2016-10-18T11:01:57 | 2016-10-18T11:01:55 | Python | UTF-8 | Scilab | false | false | 234 | tst | 0031.tst | SpLIttEr mLaO {}
fiLTer S { }
fILTer LKXKfi {Q J }
GEpUDb brAnCh i
GRoUPer L {aggrEgaTe vx ,uniOn(xb) as tzn }
UngRoupeR MDOI { }
GRoupFiLTer g {bItoR () or NOt 27.6.4.41/2 <= ::e:1.254.61.13 }
mErGer bCUjZ { expoRT tje } |
58c45ddd86984aaf29fae58aa4d119459564398f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3131/CH8/EX8.3/Ex8_3.sce | 568491b8ddd254bffd02109feccc50dfdeb7d509 | [] | 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 | 576 | sce | Ex8_3.sce | clear all; clc;
disp("Ex 8_3")
//Using the eqautions of equilibrium and eqautions of friction and after simplifyig, we get a qaudratic equation: mu_s^2-4.419*mu_s+1=0
//solving the above equation for mu_s:
//coefficients of the quadratic equation
a=1
b=-4.619
c=1
d=sqrt(b^2-(4*a*c))
mu_s1=((-b)+d)/(2*a)
mu_s2=((-b)-d)/(2*a)
printf('\n\n The two values of mu_s are mu_s1 = %0.3f and mu_s2 = %0.3f',mu_s1,mu_s2)
disp(" ")
disp("Coefficient of friction lies between 0 and 1 always. Hence, we select mu_s2 as the coefficient of static friction at A and B")
disp("mu_s = 0.228")
|
0793e83f8c1652e6e16753050e9945b2157e6065 | 449d555969bfd7befe906877abab098c6e63a0e8 | /671/CH1/EX1.11/1_11.sce | ea9a3cf38522a3dbc9718055a6edf85c105423dc | [] | 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 | 142 | sce | 1_11.sce | i1=4-1 // KCL at node 1
disp(i1,"i1=")
v1=i1*1
v12=1*1
v2=v1-v12
i2=v2/1
i3=1-i2 //KCL at node 2
Vs=v2-1*i3 //KVL
disp(Vs,"Vs=") |
ea29d0f25eea04affe97f94f8df2ba52fbea9647 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2339/CH5/EX5.15.1/Ex5_15.sce | f6fa12ce21e9bab93cce1ff868f8964bf72cffe2 | [] | 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 | 633 | sce | Ex5_15.sce | clc
clear
Ms=7.5; //kg/kg of coal
P=11; //in bar
Tf=70; //in C
Eff=0.75; //Efficiency
FOE=1.15; //Factor of Evaporation
Cps=2.1; //in kJ/kg K
Hfw=293; //in kJ/kg
H=(FOE*2257)+Hfw;
//At 11 bar
Hg=2781.7; //in kJ/kg
Tsat=184.1; //in C
Tsup=((H-Hg)/Cps)+Tsat;
DOS=Tsup-Tsat; //Degree of Superheat
printf('Degree of Superheat: %3.1f C',DOS);
printf('\n');
Me=(Ms*(H-Hfw))/2257;
printf('Equivalent evaporation: %3.2f kg/kg of coal',Me);
printf('\n');
CV=(Ms*(H-Hfw))/Eff;
printf('Calorific value of Boiler: %3.2f kJ/kg ',CV);
printf('\n');
|
6ae1b31ce37ab1ea276f0734c2c13c5b8f753979 | 449d555969bfd7befe906877abab098c6e63a0e8 | /26/CH5/EX5.1.19/5_1_19.sce | 3e0f3172c8513d591e7602af8704e54fa66fcd47 | [] | 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 | 186 | sce | 5_1_19.sce | disp('The given matrix is:')
a=[1 1 1;2 2 2;3 3 3]
disp(a,'A=')
disp('A is not invertible because its columns are linearly dependent.')
disp('Hence, 0 is an eigenvalue of matrix A.') |
3753b06ca662c6b91bb1e4a3dc6843d40883ac08 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1439/CH18/EX18.7/18_7.sce | 9a473cfe68f75d5cd72f2636b534cadc45cf9614 | [] | 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 | 177 | sce | 18_7.sce | clc
//initialisation of variables
v= 8.867*10^13 //sec^-1
u= 1.628*10^-24 //gms
//CALCULATIONS
k= (%pi*2*v)^2*u
//RESULTS
printf (' force constant = %.2e dyne cm^-1',k)
|
89a72a64f520d695f6faedd85f84a9666cd636f8 | 5a05d7e1b331922620afe242e4393f426335f2e3 | /macros/deconv.sci | 1c4d8fa8757c65424f4989118fd8d665703ebe08 | [] | no_license | sauravdekhtawala/FOSSEE-Signal-Processing-Toolbox | 2728cf855f58886c7c4a9317cc00784ba8cd8a5b | 91f8045f58b6b96dbaaf2d4400586660b92d461c | refs/heads/master | 2022-04-19T17:33:22.731810 | 2020-04-22T12:17:41 | 2020-04-22T12:17:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 2,165 | sci | deconv.sci | function [b, r] = deconv (y, a)
// calling sequence:
// [b,r]= deconv (y, a)
// Deconvolve two vectors.
//
// [b, r] = deconv (y, a) solves for b and r such that
// y = conv (a, b) + r.
//
// If y and a are polynomial coefficient vectors, b will
// contain the coefficients of the polynomial quotient and r will be
// a remainder polynomial of lowest order.
//Test cases:
//1.
//[b, r] = deconv ([3, 6, 9, 9], [1, 2, 3])
//Output:
//b=[3, 0]
//r=[0, 0, 0, 9]
//2.
//[b, r] = deconv ([3, 6], [1; 2; 3])
//Output:
//b = 0.
//r= [- 2. ; 8]
[nargout,nargin]=argn();
if (nargin ~= 2)
error ("wrong number of input arguments");
end
if (~ (isvector (y) & isvector (a)))
error ("deconv: both arguments must be vectors");
end
la = length (a);
ly = length (y);
lb = ly - la + 1;
// Ensure A is oriented as Y.
if (diff (size (y)) * diff (size (a)) < 0)
a = permute (a, [2, 1]);
end
if (ly > la)
o=size (y) - size (a) + 1;
x = zeros (o(1),o(2));
x(1) = 1;
b = filter (real(y), real(a), x);
elseif (ly == la)
b = filter (real(y), real(a), 1);
else
b = 0;
end
lc = la + length (b) - 1;
if (ly == lc)
if (length(a)==length(b) | length(a)>length(b))
if isrow(a)
q=conv(a,b);
u=[];
for i=1:length(y)
u=[u;q];
end
w=[];
if (isrow(y))
for i=1:length(q)
w=[w;y];
end
else
for i=1:length(q)
w=[w,y];
end
end
r = w-u;
r=diag(r);
end
end
r=y-conv(a,b);
elseif(la~=lc)
// Respect the orientation of Y"
if (size (y,"r") <= size (y,"c"))
r = [(zeros (1, lc - ly)), y] - conv (a, b);
else
r = [(zeros (lc - ly, 1)); y] - conv (a, b);
end
if (ly < la)
// Trim the remainder is equal to the length of Y.
r = r($-(length(y)-1):$);
end
end
endfunction
|
e5ff33097e8ffc1de485eba0645e8659e6713dac | 449d555969bfd7befe906877abab098c6e63a0e8 | /1271/CH15/EX15.19/example15_19.sce | afab4774e498193cfe8dbb961f570d067b7b6aa5 | [] | 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 | 691 | sce | example15_19.sce | clc
// Given that
l = 1e-10 // width of box in m
e = 1.6e-19 // charge on an electron in C
m = 9.1e-31 // mass of electron in kg
c = 3e8 // speed of light in m/sec
h = 6.63e-34 // Planck constant in J-sec
// Sample Problem 19 on page no. 15.31
printf("\n # PROBLEM 19 # \n")
printf("Standard formula used \n")
printf(" E = (n^2 * h^2) / (8 * m * L^2)) \n p_n = n*h/(2*pi) \n")
n = 1 // for n=1
p1 = (n * h) / (2 * l)
E = (n^2 * h^2) / (8 * m * l^2)
n = 2 // for n=2
p2 = (n * h) / (2 * l)
E_ = (n^2 * h^2) / (8 * m * l^2)
printf("\n Energy of electron -\n For (n=1) is %e J.\n For (n=2) is %e J.\n Momentum of electron -\n For (n=1) is %e kg-m/sec.\n For (n=2) is %e kg-m/sec.",E,E_,p1,p2)
|
d966529525dd0574dbc8033b68a64a5e7069a4e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1106/CH3/EX3.22/ex3_22.sce | 692a453598d6d2f875f80d56ba3d794f28b42d22 | [] | 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 | 314 | sce | ex3_22.sce | // Example 3.22, page no-147
clear
clc
Vi=0.6
Vi1=0.6
Vi2=0.6
R1=10*10^3
Rf=20*10^3
RL=2*10^3
I1=Vi/R1
I1=I1*1000
Av=1+Rf/R1
printf('Av=%d',Av)
Vo=Av*Vi
printf('\nVo=%.1f V',Vo)
IL=Vo/RL
IL=IL*1000
printf('\nI1=%.1f mA',IL)
//By Kirchhoff's current law
Io=I1+IL
printf('\nIo=%.2f mA', Io)
|
d1cbadeca3d53a02fb99a852347126c3d3189f80 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2216/CH4/EX4.3/ex_4_3.sce | 8175570703f70a6b1ddafb92624786d9a461e272 | [] | 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 | 219 | sce | ex_4_3.sce | // Example 4.3:Number of the modes
clc;
clear;
close;
format('v',6)
h= 0.85;// Wavelenght in micrometers
a= 50;// Core radius in micrometers
NA=0.17;//
v1=(2*%pi*a*NA)/h;
m2= round((v1^2)/2);
disp(m2,"Number of modes")
|
290d0d4cc7ba4d77690b2f8b0e883df1fac46428 | a62e0da056102916ac0fe63d8475e3c4114f86b1 | /set7/s__elelectronics_instrumentation_and_measurements_U._S._Shah_2195.zip/_elelectronics_instrumentation_and_measurements_U._S._Shah_2195/CH9/EX9.14.2/ex_9_14_2.sce | d14cd3725f77b076c08260e6929f53af8330fb39 | [] | 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 | 251 | sce | ex_9_14_2.sce | errcatch(-1,"stop");mode(2);//Example 9.14.2 // time interval
;
;
format('v',7)
vdv=2;//volts per division in micro seconds/div
n=2;//no. of divisions
Tint=vdv*n;//peak to peak voltage in volts
disp(Tint,"time interval in micro seconds is")
exit();
|
379c24da197c909bbf3b353f91fb5484e044553a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3035/CH15/EX15.5/Ex15_5.sce | 32e42b94d9d8019ee0e8a72b50c3d69d12c5d1e9 | [] | 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,009 | sce | Ex15_5.sce |
// Variable Declaration
P_i = 0.75 //Pre-fault power(p.u)
f = 50.0 //Frequency(Hz)
H = 6.0 //Value of H for finite machine(sec)
x_G = 0.2 //Reactance of machine(p.u)
x_T = 0.1 //Reactance of transformer(p.u)
x_L = 0.4 //Reactance of line(p.u)
V = 1.0 //Voltage of infinite bus(p.u)
E = 1.0 //e.m.f of finite generator behind transient reactance(p.u)
// Calculation Section
X_T = x_G+x_T+(x_L) //Transfer reactance at pre-fault state(p.u)
P_m = E**2/X_T //Amplitude of power angle curve at pre-fault state(p.u)
delta_0 = asin(P_i/P_m) //Radians
delta_0a = delta_0*180/%pi
delta_cr = acos((%pi-2*delta_0)*sin(delta_0)-cos(delta_0))
delta_cra = delta_cr*180/%pi
t_cr = ((delta_cra-delta_0a)*2*H/(180*f*P_i))**0.5
// Result Section
printf('Critical clearing angle for circuit breaker at bus 1 = %.2f°' ,delta_cra)
printf('Time for circuit breaker at bus 1 ,t_cr = %.3f sec' ,t_cr)
|
a18ce8d86ae675b8ba907c23d1feda43550249bd | c1e86b47eb05c58f4522db485e82bd9aed662eb9 | /spec/fixtures/agg_index.tst | 153c9da4bd8c09e817d81332e201023e720bb67e | [
"MIT"
] | permissive | yieldbot/sensu-yieldbot-plugins | 26958bf57bbee73469bfc1f759e05bcb4ef31906 | e03aee60bd6ed2621292884a0d07dcdffe58bfca | refs/heads/master | 2020-04-06T06:32:15.712693 | 2018-10-09T15:50:14 | 2018-10-09T15:50:14 | 18,178,205 | 8 | 7 | null | null | null | null | UTF-8 | Scilab | false | false | 3,071 | tst | agg_index.tst | health index pri rep docs.count docs.deleted store.size pri.store.size
green aggstats-2013-01 12 1 1843406 301578 1.4gb 749.7mb
green aggstats-2013-03 12 1 4499021 14779 2.8gb 1.4gb
green aggstats-2012-11 12 1 821800 5307 593mb 296.5mb
green aggstats-2014-08 12 1 100108125 29479 73gb 36.5gb
green aggstats-2014-10 12 1 95284495 920074 69.1gb 34.5gb
green aggstats-2012-02 12 1 12744 0 6.6mb 3.3mb
green aggstats-2012-01 12 1 12890 0 6.7mb 3.3mb
green aggstats-2013-08 12 1 5198865 25207 3.6gb 1.8gb
green aggstats-2012-03 12 1 13844 0 7.2mb 3.6mb
green aggstats-2013-12 12 1 5085651 1316592 4.4gb 2.2gb
green aggstats-2014-04 12 1 76508420 285674 55gb 27.5gb
green aggstats-2012-09 12 1 282086 1762 194.8mb 97.4mb
green aggstats-2012-06 12 1 97785 66 61.2mb 30.6mb
green aggstats-2013-11 12 1 8491953 35939 5.7gb 2.8gb
green aggstats-2013-06 12 1 4268795 20252 2.8gb 1.4gb
green aggstats-2013-02 12 1 2032366 13213 1.3gb 705.3mb
green _river 12 1 2 0 20kb 10kb
green yb-metadata 12 1 1 0 7.8kb 3.9kb
green aggstats-2012-12 12 1 645349 2976 454.3mb 227.1mb
green aggstats-2013-04 12 1 4084283 17235 2.6gb 1.3gb
green aggstats-2014-03 12 1 38443016 128607 27gb 13.5gb
green aggstats-2013-05 12 1 5874909 17486 3.6gb 1.8gb
green aggstats-2012-05 12 1 27909 254 16.7mb 8.3mb
green aggstats-2014-02 12 1 21027814 6080641 18.2gb 9.1gb
green aggstats-2014-06 12 1 56445236 22463 40.2gb 20.1gb
green aggstats-2014-07 12 1 60649610 24713 43.6gb 21.8gb
green aggstats-2013-07 6 1 4434745 24805 2.9gb 1.4gb
green aggstats-2012-04 12 1 13936 0 7.3mb 3.6mb
green aggstats-2012-08 12 1 138367 737 91mb 45.5mb
green aggstats-2012-07 12 1 103743 409 66.1mb 33mb
green aggstats-2012-10 12 1 572294 3352 407.1mb 203.5mb
green aggstats-2014-05 12 1 42942977 15888 30gb 15gb
green aggstats-2013-09 12 1 5096980 26230 3.6gb 1.8gb
green aggstats-2014-01 12 1 5072547 251461 3.5gb 1.7gb
green aggstats-2014-09 12 1 109204906 24223 79.4gb 39.7gb
green aggstats-2013-10 12 1 6931063 28893 4.8gb 2.4gb
|
4a2f2ffdf3793c2bdc3a66ca4686f8229b7c26bd | 449d555969bfd7befe906877abab098c6e63a0e8 | /858/CH8/EX8.7/example_7.sce | d62873e680b2e127de99388336ad7b3d172f5e52 | [] | 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 | 983 | sce | example_7.sce | clc
clear
printf("example 8.7 page number 367\n\n")
//to find the flow rate in an orifice
density_of_water = 1000; //in kg/m3
viscosity = 1*10^-3; //in Pa-s
pipe_diameter = 250; //in mm
orifice_diameter = 50; // in mm
density_of_mercury = 13600; // in mm
manometer_height = 242; //in mm
//calculation
height_water_equivalent = (density_of_mercury-density_of_water)*(manometer_height*10^-3)/(density_of_water) //in m
//assuming Re>30000
Co = 0.61;
velocity = Co*(2*9.8*height_water_equivalent/(1-(orifice_diameter/pipe_diameter)^4))^0.5; //in m/s
//checking Reynold's number
Re = (orifice_diameter*10^-3*velocity*density_of_water)/viscosity;
printf("reynolds number = %f\nwhich is greater than 30000",Re)
if Re>30000 then printf("\n\nvelocity of water = %f m/s",velocity)
end
rate_of_flow = (3.14*(orifice_diameter*10^-3)^2/4)*velocity*density_of_water;
printf("\n\nrate of flow = %f litre/s",rate_of_flow)
|
e244fef795882970bb05c06060156e4aa9500baa | 449d555969bfd7befe906877abab098c6e63a0e8 | /3808/CH7/EX7.10/Ex7_10.sce | 696b872c87d5988895307458f8d919418ab3a920 | [] | 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 | 384 | sce | Ex7_10.sce | //Chapter 07: Discrete Probability
clc;
clear;
s_total_msg=2000 //spam messages total
spam_msg=250 //occurrence of 'Rolex' in spam
nspam_msg=5 //occurrence of 'Rolex' in not know to be spam
ns_total_msg=1000//not spam messages total
threshold=0.9
p=spam_msg/s_total_msg
q=nspam_msg/ns_total_msg
r=p/(p+q)
if r>threshold then
disp(r,'R=')
disp('Reject')
end
|
002cb58a760af5c28ed67b616b0abc7a717e0b41 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3665/CH9/EX9.2/Ex9_2.sce | 82aaf5c2011484a716b6dd976a27382967fdba28 | [] | 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 | 251 | sce | Ex9_2.sce | clc//
//
//
//Variable declaration
d=5*10^-6; //thickness(m)
Dc=3.4*10^-3; //diffusion coefficient(m^2 S-1)
//Calculation
tow_diff=d^2/(2*Dc); //time taken(s)
//Result
printf("\n time taken is %0.1f *10^-9 s",tow_diff*10^9)
|
d0319f5407ed1c2e8f489fecd10776458e8bc923 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3850/CH25/EX25.3/ex25_3.sce | 493878b69ab94736ddd0f7379e95655075e0cb70 | [] | 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 | 467 | sce | ex25_3.sce | //To calculate the mass of melted Ice
//Example 25.3
clear;
clc;
m=0.2;//mass of a piece of ice in kg at 25 degree Celsius
s=4200;//specific heat capacity of water in J/kg-k
t1=25;//Initial Temperature in Celsius
t2=0;//Final Temperature in Celsius
Q=m*s*(t1-t2);//formula for finding the heat
L=3.4*10^5;//specific latent heat of fusion of ice in J/kg
M=Q/L;//The amount of ice melted
printf("Mass of the Ice Melted=%f gram",M*1000);
|
e968257b6ac1d9b54d0d9cc7dae7f9576dc5462c | 449d555969bfd7befe906877abab098c6e63a0e8 | /1658/CH5/EX5.11/Ex5_11.sce | 69cf1bffc8f823714f6646b5f443884910c1568e | [] | 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 | 93 | sce | Ex5_11.sce | clc;
VS=6;
R1=330;
R2=470;
VD=0.7;
RT=R1+R2;
I=(VS-0.7)/RT;
disp('mA',I*10**3,"I=");
|
a6673a65d46fce9ed8b6687264d34a9c8262d50e | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH15/EX15.21/Ex15_21.sce | 817c8e3478c45c72ada7426df709d044b6fe7851 | [] | 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 | 383 | sce | Ex15_21.sce | //Variable declaration:
a1 = 0.00044 //Term 'a' for U_clean
a2 = 0.00089 //Term 'a' for U_dirty
//Calculation:
Rs = a2 - a1 //Resistance associated with the scale
hs = 1.0/Rs //Scale film coefficient (Btu/h.ft^2..)
//Result:
printf("The scale film coefficient neglecting the wall resistance is: %.0f Btu/h.ft^2.. .",hs)
|
565203cc25f7cde7f40fde806cb1861ec27dfec9 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1049/CH6/EX6.31/ch6_31.sce | de6cd6c852ed61f5543db0958b804cc51423915e | [] | 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 | 180 | sce | ch6_31.sce | clear;
clc;
V=230;//per phase
V_ml=sqrt(3)*sqrt(2)*V;
f=50;
w=2*%pi*f;
a1=60;
L=0.015;
i_cp=(sqrt(3)*V_ml/(w*L))*(1-sind(a1)); printf("circulating current=%.4f A",i_cp); |
006c2da3d16807048aae75a72a83e7fff728ec0e | fdf97225e208a6642e1aafddb68b8d3e948f9b9a | /sql/feuerstein/Best_Practices/Code/effdsql.tst | 3a0f6735f0792745182efb599882b2a3c92cd915 | [] | no_license | jampaniuday/sql_source | 2b47413a50bf419559f6310148f799cf04edb668 | 5c84428161ef58084f8fb25021fd378544ee91db | refs/heads/master | 2021-06-11T14:18:52.676174 | 2017-02-06T21:52:11 | 2017-02-06T21:52:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 3,396 | tst | effdsql.tst | CREATE OR REPLACE PROCEDURE dynsql_efficiency (counter IN INTEGER)
IS
cursor_id INTEGER;
exec_stat INTEGER;
BEGIN
/*
|| Approach 1: Open, parse, execute and bind and close
|| for each new variable.
*/
PLVtmr.capture;
FOR i IN 1..counter
LOOP
cursor_id := DBMS_SQL.OPEN_CURSOR;
DBMS_SQL.PARSE
(cursor_id,
'SELECT employee_id, last_name, first_name, d.department_id,
salary, manager_id
FROM employee E, department D
WHERE D.department_id = ' || i ||
' AND E.department_id = D.department_id
AND E.employee_id IN
(SELECT employee_id
FROM employee E2
WHERE salary = (SELECT MAX(salary) FROM employee))
AND last_name LIKE ''S%''
ORDER BY DECODE (D.department_id, 10, SYSDATE,
20, SYSDATE + 50,
30, ADD_MONTHS (SYSDATE,50),
40, SYSDATE + 500)'
,DBMS_SQL.native);
exec_stat := DBMS_SQL.EXECUTE(cursor_id);
DBMS_SQL.CLOSE_CURSOR(cursor_id);
END LOOP;
PLVtmr.show_elapsed ('Repetitive parse and no bind');
/*
|| Approach 2: Parse and bind only when necessary
*/
PLVtmr.capture;
cursor_id := DBMS_SQL.OPEN_CURSOR;
/*
|| parse first outside of loop
*/
DBMS_SQL.PARSE
(cursor_id,
'SELECT employee_id, last_name, first_name, d.department_id,
salary, manager_id
FROM employee E, department D
WHERE D.department_id = :diff_name
AND E.department_id = D.department_id
AND E.employee_id IN
(SELECT employee_id
FROM employee E2
WHERE salary = (SELECT MAX(salary) FROM employee))
AND last_name LIKE ''S%''
ORDER BY DECODE (D.department_id, 10, SYSDATE,
20, SYSDATE + 50,
30, ADD_MONTHS (SYSDATE,50),
40, SYSDATE + 500)'
,DBMS_SQL.native);
FOR i IN 1..counter
LOOP
/*
|| bind and excecute each loop iteration
|| using host vars
*/
DBMS_SQL.BIND_VARIABLE(cursor_id, 'diff_name', i);
exec_stat := DBMS_SQL.EXECUTE(cursor_id);
END LOOP;
DBMS_SQL.CLOSE_CURSOR(cursor_id);
PLVtmr.show_elapsed ('Single parse');
PLVtmr.capture;
FOR i IN 1..counter
LOOP
cursor_id := DBMS_SQL.OPEN_CURSOR;
DBMS_SQL.PARSE
(cursor_id,
'SELECT employee_id, last_name, first_name, d.department_id,
salary, manager_id
FROM employee E, department D
WHERE D.department_id = :diff_name
AND E.department_id = D.department_id
AND E.employee_id IN
(SELECT employee_id
FROM employee E2
WHERE salary = (SELECT MAX(salary) FROM employee))
AND last_name LIKE ''S%''
ORDER BY DECODE (D.department_id, 10, SYSDATE,
20, SYSDATE + 50,
30, ADD_MONTHS (SYSDATE,50),
40, SYSDATE + 500)'
,DBMS_SQL.native);
DBMS_SQL.BIND_VARIABLE(cursor_id, 'diff_name', i);
exec_stat := DBMS_SQL.EXECUTE(cursor_id);
DBMS_SQL.CLOSE_CURSOR(cursor_id);
END LOOP;
PLVtmr.show_elapsed ('Repetitive parse with bind');
END;
/
|
9ab6dd4fffc22349a63d3e5312d9768914a0b2e4 | d153e998690566a383b3cb700294956d3753b364 | /Scilab/fibonacciRecursivo.sce | 507f3916ab50ad2f1eb767e2d4495844a5f699f7 | [] | no_license | rayssalourrane/TPFINAL-CN | dc2c2211538fb36a7446c3ef0017a104b2375f87 | ec7d83a359c4ed85a65cefad0d69472955b467ca | refs/heads/master | 2020-06-18T09:25:39.181310 | 2019-07-11T18:45:14 | 2019-07-11T18:45:14 | 196,251,580 | 1 | 5 | null | 2019-07-11T13:29:08 | 2019-07-10T17:53:28 | Java | UTF-8 | Scilab | false | false | 293 | sce | fibonacciRecursivo.sce | function f = fibonacciRecursivo(n)
tic();
select n
case 0 then
f = 1
case 1 then
f = 1
else
f = fibonacciRecursivo(n-1) + fibonacciRecursivo(n-2)
end
t = toc();
disp(t);
endfunction
|
a6eba2fc73078fcc31a367bdeab6c18b350c9702 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3116/CH17/EX17.2/Ex17_2.sce | 0837ea893b17c4899880f8ac1c5eec4af1f0cb01 | [] | 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 | 447 | sce | Ex17_2.sce |
clc
// Given that
e=1.6*10^-19 //Charge on electron in Coulomb
ni=4*10^19 // number of electron per unit volume for Si at 423 K (m^-3)
//Values of m_e and m_h are deduced from graphs at page No.689
m_e=0.06 //Mobility of electron in m^2/V-s
m_h=0.022 // Mobility of holes in m^2/V-s
printf(" Example 17.2\n")
sigma=ni*e*(m_e+m_h) // electrical conductivity
printf("\n Electrical Conductivity is %.2f (Ohm-m)^-1\n",sigma)
|
9b3373070ddc976035b15a7ad0b807c5561065de | 449d555969bfd7befe906877abab098c6e63a0e8 | /1583/CH3/EX3.11/NNID_Ex_3_11.sce | f90766ca078ca56ef0c98ee5aef3bcb43c7cbe3c | [] | 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 | 427 | sce | NNID_Ex_3_11.sce | clc
//Chapter 3:Network noise and intermodulation distortion
//example 3.11 page no 88
//given
ensqr=8*10^-16//noise voltage
insqr=9*10^-25//rms noise current
Rs=sqrt(ensqr/insqr)//sourse resistance
k=1.38*10^-23//Boltzmmans constant
T=290//tempreture
F=(ensqr+insqr*Rs^2+4*k*T*Rs)/(4*k*T*Rs)//amplifier noise factor
NF=10*log10(F)//noise figure
mprintf('the minimum minimum noise figure is %f dB',round(NF*10)/10)
|
8835079938c8500fac3455da5c0c5c3756a7470c | 01ecab2f6eeeff384acae2c4861aa9ad1b3f6861 | /sci2blif/sci2blif_added_blocks/TIA.sce | 52ab4baad0251af80137dd05318f5525c716c662 | [] | no_license | jhasler/rasp30 | 9a7c2431d56c879a18b50c2d43e487d413ceccb0 | 3612de44eaa10babd7298d2e0a7cddf4a4b761f6 | refs/heads/master | 2023-05-25T08:21:31.003675 | 2023-05-11T16:19:59 | 2023-05-11T16:19:59 | 62,917,238 | 3 | 3 | null | null | null | null | UTF-8 | Scilab | false | false | 877 | sce | TIA.sce | //************************* TIA ******************************
if (blk_name.entries(bl) =='TIA') then
for ss=1:scs_m.objs(bl).model.ipar(1)
mputl("# TIA",fd_w);
tia_str= ".subckt TIA_blk in[0]=net"+string(blk(blk_objs(bl),2))+'_1 out[0]=net"+string(blk(blk_objs(bl),2+numofip))+'_'+string(ss)+" #TIA_fgota_bias[0] =10e-6&TIA_ota_p_bias[0] =50e-9&TIA_ota_n_bias[0] =10e-9&TIA_fgota_bias[1] =100e-9&TIA_ota_p_bias[1] =50e-9&TIA_ota_n_bias[1] =2e-9&TIA_ota_bias[0] =1e-6&TIA_ota_buf_out[0] =2e-6&TIA_fg[0] =0";
mputl(tia_str,fd_w);
mputl(" ",fd_w);
if scs_m.objs(bl).model.rpar(1) == 1 then
plcvpr = %t;
plcloc=[plcloc;'net'+string(blk(blk_objs(bl),2+numofip))+'_'+string(ss),string(scs_m.objs(bl).model.rpar(1+2*ss-1))+' '+string(scs_m.objs(bl).model.rpar(1+2*ss))+' 0'];
end
end
mclose(fd_io);
end
|
e9c844c44efe50dc50b9dc9dd0d6496ed738e334 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3753/CH3/EX3.9/Ex3_9.sce | 42e6f52610d6cd85a3a533a4e383f545e8799ae2 | [] | 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 | 381 | sce | Ex3_9.sce | //Example number 3.9, Page number 3.35
clc;clear;close
// Variable declaration
lamda_L1=39.6*10**-9 // in m
lamda_L2=173*10**-9 // in m
T1=7.1 // in s
T2=3 // in s
// Calculations
x=(lamda_L1/lamda_L2)**2 // in kg/m^2
Tc4=(T1**4)-((T2**4)*x)/(1-x) // in K
Tc=(Tc4)**(1/4) // in K
printf("Tc = %0.4f K",Tc)
printf("\nlamda0 = %.f nm",round((sqrt(1-(T2/Tc)**4)*lamda_L1)*10**9))
|
cea9eaccde5e66abcca93bb54665ff4e21458494 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects - Kopie/CONT/NW42UPG/ATWM1_Working_Memory_MEG_NW42UPG_Session1/ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce | 67ea78bc9a13288f86cc09596265dd2dd4847e53 | [] | 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 | 48,408 | sce | ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_uncued_run1";
#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;
42 61 292 292 399 125 1742 2992 2192 fixation_cross gabor_169 gabor_096 gabor_054 gabor_144 gabor_169_alt gabor_096_alt gabor_054 gabor_144 "1_1_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_169_096_054_144_target_position_1_2_retrieval_position_1" gabor_121_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2242 2992 2342 fixation_cross gabor_071 gabor_143 gabor_033 gabor_180 gabor_071_alt gabor_143 gabor_033 gabor_180_alt "1_2_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_071_143_033_180_target_position_1_4_retrieval_position_1" gabor_118_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1992 2992 2542 fixation_cross gabor_166 gabor_097 gabor_010 gabor_034 gabor_166 gabor_097_alt gabor_010 gabor_034_alt "1_3_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_166_097_010_034_target_position_2_4_retrieval_position_2" gabor_circ gabor_097_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2192 2992 2292 fixation_cross gabor_156 gabor_110 gabor_001 gabor_173 gabor_156_alt gabor_110 gabor_001 gabor_173_alt "1_4_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_156_110_001_173_target_position_1_4_retrieval_position_1" gabor_020_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1842 2992 1942 fixation_cross gabor_135 gabor_008 gabor_155 gabor_090 gabor_135 gabor_008 gabor_155_alt gabor_090_alt "1_5_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_135_008_155_090_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_090_framed blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 2092 2992 2292 fixation_cross gabor_164 gabor_035 gabor_008 gabor_113 gabor_164_alt gabor_035 gabor_008 gabor_113_alt "1_6_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_2100_3000_2300_gabor_patch_orientation_164_035_008_113_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_008_framed gabor_circ blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_008_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_140 gabor_167 gabor_005 gabor_055 gabor_140 gabor_167_alt gabor_005_alt gabor_055 "1_7_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_140_167_005_055_target_position_2_3_retrieval_position_2" gabor_circ gabor_118_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_030 gabor_010 gabor_168 gabor_153 gabor_030 gabor_010 gabor_168_alt gabor_153_alt "1_8_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_030_010_168_153_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_119_framed gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2042 2992 2142 fixation_cross gabor_006 gabor_026 gabor_139 gabor_067 gabor_006 gabor_026 gabor_139_alt gabor_067_alt "1_9_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_006_026_139_067_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_067_framed blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_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;
42 62 292 292 399 125 1992 2992 2042 fixation_cross gabor_063 gabor_078 gabor_093 gabor_168 gabor_063_alt gabor_078 gabor_093_alt gabor_168 "1_10_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_063_078_093_168_target_position_1_3_retrieval_position_1" gabor_063_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2242 2992 2092 fixation_cross gabor_003 gabor_155 gabor_037 gabor_112 gabor_003 gabor_155_alt gabor_037_alt gabor_112 "1_11_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_003_155_037_112_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_172_framed gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_172_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 1742 2992 2142 fixation_cross gabor_022 gabor_044 gabor_109 gabor_087 gabor_022 gabor_044_alt gabor_109_alt gabor_087 "1_12_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_1750_3000_2150_gabor_patch_orientation_022_044_109_087_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_133_framed blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_133_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1742 2992 2342 fixation_cross gabor_090 gabor_141 gabor_054 gabor_176 gabor_090 gabor_141_alt gabor_054 gabor_176_alt "1_13_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_090_141_054_176_target_position_2_4_retrieval_position_2" gabor_circ gabor_141_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1792 2992 2242 fixation_cross gabor_081 gabor_101 gabor_171 gabor_048 gabor_081 gabor_101 gabor_171_alt gabor_048_alt "1_14_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_081_101_171_048_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_171_framed gabor_circ blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 1942 2992 1892 fixation_cross gabor_161 gabor_015 gabor_087 gabor_121 gabor_161 gabor_015_alt gabor_087 gabor_121_alt "1_15_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_1900_gabor_patch_orientation_161_015_087_121_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_040_framed gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_040_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1792 2992 2292 fixation_cross gabor_110 gabor_180 gabor_032 gabor_142 gabor_110_alt gabor_180 gabor_032_alt gabor_142 "1_16_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_110_180_032_142_target_position_1_3_retrieval_position_1" gabor_110_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_061 gabor_004 gabor_129 gabor_170 gabor_061_alt gabor_004 gabor_129 gabor_170_alt "1_17_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_061_004_129_170_target_position_1_4_retrieval_position_1" gabor_061_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_061_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1892 2992 2392 fixation_cross gabor_120 gabor_176 gabor_037 gabor_056 gabor_120 gabor_176 gabor_037_alt gabor_056_alt "1_18_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_120_176_037_056_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_007_framed blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_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;
42 62 292 292 399 125 2042 2992 2342 fixation_cross gabor_165 gabor_019 gabor_047 gabor_083 gabor_165 gabor_019 gabor_047_alt gabor_083_alt "1_19_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_165_019_047_083_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_047_framed gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 1992 2992 2442 fixation_cross gabor_021 gabor_067 gabor_133 gabor_180 gabor_021_alt gabor_067 gabor_133_alt gabor_180 "1_20_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_2450_gabor_patch_orientation_021_067_133_180_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_180_framed blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_180_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2042 2992 2442 fixation_cross gabor_153 gabor_011 gabor_065 gabor_123 gabor_153 gabor_011_alt gabor_065 gabor_123_alt "1_21_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_153_011_065_123_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_173_framed blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1992 2992 2142 fixation_cross gabor_032 gabor_070 gabor_014 gabor_138 gabor_032_alt gabor_070 gabor_014_alt gabor_138 "1_22_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2150_gabor_patch_orientation_032_070_014_138_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_154_framed gabor_circ blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_154_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1992 2992 2442 fixation_cross gabor_101 gabor_162 gabor_083 gabor_146 gabor_101 gabor_162_alt gabor_083 gabor_146_alt "1_23_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2450_gabor_patch_orientation_101_162_083_146_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_146_framed blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_146_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_101 gabor_075 gabor_132 gabor_165 gabor_101_alt gabor_075_alt gabor_132 gabor_165 "1_24_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_101_075_132_165_target_position_1_2_retrieval_position_1" gabor_053_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2142 2992 2492 fixation_cross gabor_057 gabor_168 gabor_096 gabor_133 gabor_057_alt gabor_168 gabor_096 gabor_133_alt "1_25_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_057_168_096_133_target_position_1_4_retrieval_position_1" gabor_011_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_011_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 2092 2992 2542 fixation_cross gabor_132 gabor_151 gabor_046 gabor_063 gabor_132 gabor_151_alt gabor_046_alt gabor_063 "1_26_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_2100_3000_2550_gabor_patch_orientation_132_151_046_063_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_063_framed blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_063_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2042 2992 2092 fixation_cross gabor_150 gabor_121 gabor_172 gabor_032 gabor_150_alt gabor_121 gabor_172_alt gabor_032 "1_27_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_150_121_172_032_target_position_1_3_retrieval_position_1" gabor_013_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_013_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2142 2992 2542 fixation_cross gabor_059 gabor_008 gabor_039 gabor_178 gabor_059 gabor_008_alt gabor_039 gabor_178_alt "1_28_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_059_008_039_178_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_128_framed blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_029 gabor_147 gabor_005 gabor_083 gabor_029_alt gabor_147_alt gabor_005 gabor_083 "1_29_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_029_147_005_083_target_position_1_2_retrieval_position_1" gabor_168_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2192 2992 2392 fixation_cross gabor_064 gabor_047 gabor_023 gabor_179 gabor_064 gabor_047_alt gabor_023 gabor_179_alt "1_30_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_064_047_023_179_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_179_framed blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_116 gabor_049 gabor_172 gabor_065 gabor_116 gabor_049 gabor_172_alt gabor_065_alt "1_31_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_116_049_172_065_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_033_framed gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_033_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 1742 2992 1942 fixation_cross gabor_035 gabor_161 gabor_015 gabor_071 gabor_035 gabor_161_alt gabor_015_alt gabor_071 "1_32_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_1950_gabor_patch_orientation_035_161_015_071_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_071_framed blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_071_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1792 2992 2492 fixation_cross gabor_118 gabor_135 gabor_045 gabor_162 gabor_118 gabor_135_alt gabor_045_alt gabor_162 "1_33_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2500_gabor_patch_orientation_118_135_045_162_target_position_2_3_retrieval_position_2" gabor_circ gabor_135_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_135_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1892 2992 2292 fixation_cross gabor_074 gabor_096 gabor_050 gabor_117 gabor_074_alt gabor_096 gabor_050_alt gabor_117 "1_34_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2300_gabor_patch_orientation_074_096_050_117_target_position_1_3_retrieval_position_1" gabor_027_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_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;
42 61 292 292 399 125 2092 2992 1892 fixation_cross gabor_179 gabor_106 gabor_034 gabor_151 gabor_179_alt gabor_106 gabor_034 gabor_151_alt "1_35_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_1900_gabor_patch_orientation_179_106_034_151_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_016_framed blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_015 gabor_156 gabor_179 gabor_097 gabor_015 gabor_156_alt gabor_179 gabor_097_alt "1_36_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_015_156_179_097_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_049_framed blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_049_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 2042 2992 2442 fixation_cross gabor_095 gabor_041 gabor_152 gabor_067 gabor_095_alt gabor_041 gabor_152_alt gabor_067 "1_37_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_2050_3000_2450_gabor_patch_orientation_095_041_152_067_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_067_framed blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_067_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2192 2992 2192 fixation_cross gabor_040 gabor_010 gabor_116 gabor_172 gabor_040 gabor_010_alt gabor_116_alt gabor_172 "1_38_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_040_010_116_172_target_position_2_3_retrieval_position_2" gabor_circ gabor_010_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1842 2992 2392 fixation_cross gabor_152 gabor_174 gabor_127 gabor_092 gabor_152_alt gabor_174 gabor_127 gabor_092_alt "1_39_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2400_gabor_patch_orientation_152_174_127_092_target_position_1_4_retrieval_position_1" gabor_152_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_152_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2192 2992 2592 fixation_cross gabor_036 gabor_052 gabor_068 gabor_089 gabor_036_alt gabor_052 gabor_068_alt gabor_089 "1_40_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_036_052_068_089_target_position_1_3_retrieval_position_1" gabor_175_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_175_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_144 gabor_099 gabor_013 gabor_165 gabor_144 gabor_099 gabor_013_alt gabor_165_alt "1_41_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_144_099_013_165_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_029_framed blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_029_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1942 2992 2042 fixation_cross gabor_022 gabor_062 gabor_006 gabor_046 gabor_022_alt gabor_062 gabor_006 gabor_046_alt "1_42_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_022_062_006_046_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_091_framed blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_091_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 1892 2992 1892 fixation_cross gabor_139 gabor_061 gabor_077 gabor_026 gabor_139 gabor_061_alt gabor_077 gabor_026_alt "1_43_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_1900_3000_1900_gabor_patch_orientation_139_061_077_026_target_position_2_4_retrieval_position_1" gabor_003_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_003_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1942 2992 2192 fixation_cross gabor_163 gabor_047 gabor_092 gabor_119 gabor_163 gabor_047_alt gabor_092 gabor_119_alt "1_44_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_163_047_092_119_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_119_framed blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_069 gabor_019 gabor_089 gabor_036 gabor_069 gabor_019_alt gabor_089 gabor_036_alt "1_45_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_069_019_089_036_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_036_framed blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_036_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_061 gabor_122 gabor_148 gabor_035 gabor_061_alt gabor_122_alt gabor_148 gabor_035 "1_46_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_061_122_148_035_target_position_1_2_retrieval_position_2" gabor_circ gabor_170_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_091 gabor_118 gabor_162 gabor_145 gabor_091 gabor_118_alt gabor_162 gabor_145_alt "1_47_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_091_118_162_145_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_009_framed blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 1842 2992 1942 fixation_cross gabor_040 gabor_007 gabor_096 gabor_168 gabor_040_alt gabor_007_alt gabor_096 gabor_168 "1_48_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_1950_gabor_patch_orientation_040_007_096_168_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_146_framed gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_146_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 2142 2992 1992 fixation_cross gabor_016 gabor_031 gabor_048 gabor_164 gabor_016 gabor_031_alt gabor_048 gabor_164_alt "1_49_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_016_031_048_164_target_position_2_4_retrieval_position_2" gabor_circ gabor_081_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_081_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1792 2992 2242 fixation_cross gabor_012 gabor_084 gabor_044 gabor_060 gabor_012_alt gabor_084_alt gabor_044 gabor_060 "1_50_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2250_gabor_patch_orientation_012_084_044_060_target_position_1_2_retrieval_position_1" gabor_150_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_177 gabor_112 gabor_025 gabor_072 gabor_177_alt gabor_112 gabor_025_alt gabor_072 "1_51_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_177_112_025_072_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_025_framed gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_025_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_175 gabor_154 gabor_031 gabor_115 gabor_175 gabor_154 gabor_031_alt gabor_115_alt "1_52_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_175_154_031_115_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_115_framed blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_115_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 2192 2992 2042 fixation_cross gabor_064 gabor_007 gabor_175 gabor_029 gabor_064 gabor_007 gabor_175_alt gabor_029_alt "1_53_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_2200_3000_2050_gabor_patch_orientation_064_007_175_029_target_position_3_4_retrieval_position_1" gabor_113_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_113_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1792 2992 2092 fixation_cross gabor_090 gabor_043 gabor_118 gabor_062 gabor_090_alt gabor_043 gabor_118 gabor_062_alt "1_54_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_090_043_118_062_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_062_framed blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 2092 2992 2092 fixation_cross gabor_003 gabor_175 gabor_140 gabor_020 gabor_003_alt gabor_175_alt gabor_140 gabor_020 "1_55_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_2100_3000_2100_gabor_patch_orientation_003_175_140_020_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_140_framed gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_140_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2242 2992 2192 fixation_cross gabor_031 gabor_095 gabor_154 gabor_118 gabor_031_alt gabor_095 gabor_154_alt gabor_118 "1_56_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_031_095_154_118_target_position_1_3_retrieval_position_1" gabor_031_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_064 gabor_124 gabor_041 gabor_083 gabor_064 gabor_124_alt gabor_041 gabor_083_alt "1_57_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_064_124_041_083_target_position_2_4_retrieval_position_2" gabor_circ gabor_124_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1942 2992 2142 fixation_cross gabor_054 gabor_086 gabor_015 gabor_070 gabor_054_alt gabor_086 gabor_015_alt gabor_070 "1_58_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_054_086_015_070_target_position_1_3_retrieval_position_1" gabor_054_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_054_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1842 2992 2592 fixation_cross gabor_173 gabor_067 gabor_094 gabor_146 gabor_173 gabor_067_alt gabor_094_alt gabor_146 "1_59_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_173_067_094_146_target_position_2_3_retrieval_position_2" gabor_circ gabor_113_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_113_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 2242 2992 2242 fixation_cross gabor_055 gabor_040 gabor_179 gabor_162 gabor_055_alt gabor_040 gabor_179 gabor_162_alt "1_60_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2250_gabor_patch_orientation_055_040_179_162_target_position_1_4_retrieval_position_2" gabor_circ gabor_089_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_089_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1892 2992 2042 fixation_cross gabor_061 gabor_015 gabor_038 gabor_177 gabor_061 gabor_015 gabor_038_alt gabor_177_alt "1_61_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_061_015_038_177_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_038_framed gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1942 2992 1942 fixation_cross gabor_033 gabor_092 gabor_069 gabor_010 gabor_033 gabor_092_alt gabor_069 gabor_010_alt "1_62_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_033_092_069_010_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_150_framed blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2192 2992 2592 fixation_cross gabor_044 gabor_009 gabor_026 gabor_177 gabor_044 gabor_009 gabor_026_alt gabor_177_alt "1_63_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2600_gabor_patch_orientation_044_009_026_177_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_026_framed gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 1842 2992 2492 fixation_cross gabor_024 gabor_009 gabor_149 gabor_178 gabor_024 gabor_009_alt gabor_149_alt gabor_178 "1_64_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_024_009_149_178_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_149_framed gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_017 gabor_122 gabor_078 gabor_093 gabor_017_alt gabor_122_alt gabor_078 gabor_093 "1_65_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_017_122_078_093_target_position_1_2_retrieval_position_1" gabor_017_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_017_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 62 292 292 399 125 2142 2992 2192 fixation_cross gabor_123 gabor_085 gabor_152 gabor_170 gabor_123 gabor_085_alt gabor_152 gabor_170_alt "1_66_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2200_gabor_patch_orientation_123_085_152_170_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_170_framed blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 63 292 292 399 125 1942 2992 1992 fixation_cross gabor_009 gabor_123 gabor_098 gabor_164 gabor_009_alt gabor_123 gabor_098 gabor_164_alt "1_67_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_300_300_399_1950_3000_2000_gabor_patch_orientation_009_123_098_164_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_144_framed gabor_circ blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_144_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 61 292 292 399 125 1892 2992 2342 fixation_cross gabor_058 gabor_129 gabor_073 gabor_090 gabor_058_alt gabor_129 gabor_073_alt gabor_090 "1_68_Encoding_Working_Memory_MEG_P6_LR_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_058_129_073_090_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_023_framed gabor_circ blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P6_LR_Salient_DoChange_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;
42 62 292 292 399 125 1892 2992 2092 fixation_cross gabor_061 gabor_088 gabor_144 gabor_032 gabor_061 gabor_088_alt gabor_144 gabor_032_alt "1_69_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_061_088_144_032_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_032_framed blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_032_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 64 292 292 399 125 2142 2992 1892 fixation_cross gabor_035 gabor_124 gabor_104 gabor_144 gabor_035_alt gabor_124 gabor_104 gabor_144_alt "1_70_Encoding_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_300_300_399_2150_3000_1900_gabor_patch_orientation_035_124_104_144_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_104_framed gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P6_LR_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_104_retrieval_position_3" 1 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;
}; |
b5d0153a36c350a255219635a415f3cff319d823 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1475/CH4/EX4.13/Example_4_13.sce | aad958587cc4ab69737be34bea5bb5aa811f9bca | [] | 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 | 420 | sce | Example_4_13.sce | //Example 4.13 A random sample of 100 articles taken from alarge batch of article contains 5 defective article
clc;
clear;
n=100;
p=5/100;
q=1-p;
N=2646;
SE=sqrt((p*q)/n);
disp((p-2.05*SE),"to",(p+2.05*SE),"The 96% confidence limits for Pare ",N,"Population size N",n,"Sample size");
S_E=sqrt(p*q/(n))*sqrt((N-n)/(N-1));
disp((p-1.96*S_E),"to",(p+1.96*S_E),"The required 95% confidence limits for P are ");
|
ceae9a7a9a9cf8b5fc2cc1271f0ab761dc7b8361 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1991/CH10/EX10.3/3.sce | 19e459ab46ff29d84c425309817716c4e126d3eb | [] | 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 | 210 | sce | 3.sce | clc
clear
//input
n=7//order of fringe
l=0.63*10^-6 //wavelength
x=24.8*10^-3 //seperation of bands
d=1.5
//calculation
a=n*d*l/x//slit seperation
//output
printf("the slit seperation is %3.3e m",a)
|
a8dd6a5c2c952ffd2eedb72497b3369382e86067 | 95beaf56de829d390a567f241221c582c4b682ed | /projet/CoSaMp.sce | a35717e10b99103ff5b5a2a59820e07bb989865d | [] | no_license | the-mousaillon/compressive-sensing | 85d5d5ce814ad8ec20271a3b932144e35e640041 | bfa3acf166be6a8141d1eb2064523e7de8f19db7 | refs/heads/master | 2020-04-17T15:02:05.840745 | 2019-03-20T12:55:21 | 2019-03-20T12:55:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,118 | sce | CoSaMp.sce |
function cj=contribution(R,dj)
cj=abs(dj'*R)/norm(dj)
endfunction
function y=contriblist(R,D,s)
[N,M]=size(D)
CJ=[]
for i=1:M
CJ=[CJ,contribution(R,D(:,i))]
end
indices=1:length(CJ)
[B,k]=gsort(CJ,"g","d")
y=k(1:2*s)
endfunction
function y=cosamp(D,K,x,s)
[N,M]=size(D)
a=zeros(M,1)
R=x
supp=[]
for i=1:K
supp=union(supp, contriblist(R,D,s))
AS=D(:,supp)
zmk=pinv(AS)*x
[B,h]=gsort(zmk,"g","d")
a(h(1:s)) = zmk(h(1:s))
R = x-D*a
end
y = a
endfunction
// tests
// exemple 1
D1 = [1/2*sqrt(2) 1/3*sqrt(3) 1/3*sqrt(6) 2/3 -1/3
-1/2*sqrt(2) -1/3*sqrt(3) -1/6*sqrt(6) 2/3 -2/3
0 -1/3*sqrt(3) 1/6*sqrt(6) 1/3 2/3
]
X1 = [4/3-1/2*sqrt(2); 4/3 + 1/2*sqrt(2);2/3]
// exemple 2
D2 = [
1 1 2 5 0 0 3 -2 1 2 2 2
0 -1 -1 1 0 0 5 0 2 2 7 -1
1 1 1 5 1 2 2 1 1 1 1 5
1 5 2 2 5 0 -4 5 1 5 0 0
0 2 2 1 1 0 0 0 0 4 -1 -2
-1 2 2 2 -2 -3 -4 1 1 1 1 0
]
X2 = [-10;-10;1;21;0;9]
//
disp("solution exemple 1 : ")
disp("cosamp : ")
disp(cosamp(D1, 10, X1, 1))
disp("cosamp : ")
disp(D2*cosamp(D2, 10, X2, 1))
|
2a14dee85b419f2f6a5ba480830a2044e2f21f0a | 449d555969bfd7befe906877abab098c6e63a0e8 | /3760/CH9/EX9.3/ExB_3.sce | 32b11be6ff4de1d59192f058139fc6da554083ec | [] | 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,089 | sce | ExB_3.sce | clc;
vl=400; // line voltage
z=10+7.5*%i; // load impedance per phase
disp('For star connected load');
vp=vl/sqrt(3); // phase voltage
ip=vp/abs(z);// phase and line current are same in the case of star connected load
an=atand(-imag(z),real(z));
pf=cosd(an);
P=sqrt(3)*vl*ip;
pa=sqrt(3)*vl*ip*pf;
pr=-sqrt(3)*vl*ip*sind(an);
printf('Phase and line currents are %f A\n',ip);
printf('Power factor is %f lagging \n',pf);
printf('Total volt ampere is %f VA\n',P);
printf('Total active power is %f W\n',pa);
printf('Total reactive power is %f VAr\n',pr);
disp('For delta connected load');
vp=vl // phase voltage and line voltage are same in the case of star connected load
ip=vp/abs(z);
il=ip*sqrt(3);
an=atand(-imag(z),real(z));
pf=cosd(an);
P=sqrt(3)*vl*il;
pa=sqrt(3)*vl*il*pf;
pr=-sqrt(3)*vl*il*sind(an);
printf('Phase current is %f A\n',ip);
printf('Line current is %f A\n',il);
printf('Power factor is %f lagging\n',pf);
printf('Total volt ampere is %f VA\n',P);
printf('Total active power is %f W\n',pa);
printf('Total reactive power is %f VAr\n',pr);
|
e5313daa69e8bd3074c3e25a69056409d85484f2 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1628/CH7/EX7.4/Ex7_4.sce | 8e6515acdbf6c1eeee52e2096437f2ef306b6a93 | [] | 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 | Ex7_4.sce |
// Example 7.4
r=0.75*10^-2; // Radius of Solenoid
A=%pi*r*r; // area of Solenoid
N=900; // No,of turns
l=0.3; // Length of Solenoid
mo=4*%pi*10^-7; // Permeability of free Space
L=(N*N*mo*A)/l; // Formula of Induction of a Coil
I=5; // Current of Coil
disp(' Induction of a Coil = '+string(L)+' H');
w=0.5*L*I*I; // Energy Store
disp(' Energy Stored is = '+string(w)+' J');
// p 229 7.4
|
023a861ae50c158c26bebe815ad2972f4a369e5f | 449d555969bfd7befe906877abab098c6e63a0e8 | /3204/CH24/EX24.10/Ex24_10.sce | 8d659d749cc698d5518380707b264b17b4da1041 | [] | 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 | 673 | sce | Ex24_10.sce | // Initilization of variables
l=1 // m // length of the simple pendulum
g=9.81 // m/s^2
// Calculations
// Let t_s be the time period when the elevator is stationary
t_s=2*%pi*sqrt(l/g) /// seconds
// Let t_u be the time period when the elevator moves upwards. Then from eqn 1
t_u=2*%pi*sqrt((l)/(g+(g/10))) // seconds
// Let t_d be the time period when the elevator moves downwards.
t_d=2*%pi*sqrt(l/(g-(g/10))) // seconds
// Results
clc
printf('The time period of oscillation of the pendulum for upward acc of the elevator is %f seconds \n',t_u)
printf('The time period of oscillation of the pendulum for downward acc of the elevator is %f seconds \n',t_d)
|
ef30fe940077f091bf2f5737da0dfc03cda01894 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2795/CH12/EX12.11/Ex12_11.sce | 6a3488b9f9211c8581a7a6b0ba46ac46716f1a38 | [] | 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 | 435 | sce | Ex12_11.sce | // Scilab Code Ex12.11: Page-452 (2014)
clc; clear;
T = 110; // Half life of F-18, min
f_remain = 0.01; // Fraction of the F-18 sample remained
t = -log(0.01)/(log(2)*60)*T; // Time taken by the F-18 sample to decay to 1 percent of its initial value, h
printf("\nThe time taken for 99 percent of the F-18 sample to decay = %4.1f h", t);
// Result
// The time taken for 99 percent of the F-18 sample to decay = 12.2 h |
a4e49f12d92cf681a2457ae0351dc0d2cf93deff | a8592d34f144b71794ebf30f1c2a1b5faf0b053c | /TugasBesar2018/test_poisson2d.sce | 2ae3bf186887dc4de3cd859446a3f9d86fc2f1d8 | [] | no_license | f-fathurrahman/ffr-MetodeNumerik | ee9a6a7153b174b1ba3d714fe61ccbd1cb1dd327 | e3a9da224c0fd5b32e671708e890018a3c4104c4 | refs/heads/master | 2023-07-19T22:29:38.810143 | 2023-07-07T10:02:34 | 2023-07-07T10:02:34 | 107,272,110 | 2 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 576 | sce | test_poisson2d.sce | exec("poisson2d.sce",-1)
function u = func(x,y)
u = cos(x+y) - cos(x-y)
endfunction
function u = gauss(x,y)
r2 = x**2 + y**2
u = exp(-0.5*r2)
endfunction
Nx = 50
Ny = 50
x = linspace(-%pi,%pi,Nx)
y = linspace(-%pi,%pi,Ny)
u0 = zeros(Nx,Ny)
// set BC
u0(1,:) = 0.0
u0(:,1) = 0.0
u0(Nx,:) = 0.0
u0(:,Ny) = 0.0
// calculate array for RHS
f = zeros(Nx,Ny)
for j = 1:Ny
for i = 1:Nx
f(i,j) = func( x(i), y(j) )
end
end
u = poisson2d(u0,x,y,Nx,Ny,1e-5,f)
surf(x,y,u)
set(gcf(),"color_map",jetcolormap(32))
//colorbar(min(u),max(u))
xs2pdf(gcf(),"poisson2d.pdf") |
3421ed7fa2f89e81c54a5372f4e175921ae37d9d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3556/CH3/EX3.1/Ex3_1.sce | 9e94460f35ede77d51982a4da6ed3c0552d2c935 | [] | 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,167 | sce | Ex3_1.sce | clc
// Fundamental of Electric Circuit
// Charles K. Alexander and Matthew N.O Sadiku
// Mc Graw Hill of New York
// 5th Edition
// Part 1 : DC Circuits
// Chapter 3: Methods of Analysis
// Example 3 - 1
clear; clc; close;
//
// Given data
I1 = 5.00;
I4 = 10.00;
R2 = 4.00;
R3 = 2.00;
R5 = 6.00;
A = [3.00 -1.00; -3.00 5.00];
A1= [20.00 -1.00; 60.00 5.00];
A2 =[3.00 20.00; -3.00 60.00];
//
// Calculations
// Calculations V1 and V2
V1 = det(A1)/det(A);
V2 = det(A2)/det(A);
// Calculations I2, I3, I5
I2 = (V1 - V2)/R2;
I3 = V1/R3;
I5 = V2/R5;
//
// Display the result
disp("Example 3-1 Solution : ");
printf(" \n V1 = Voltage V1 = %.3f Volt",V1)
printf(" \n V2 = Voltage V2 = %.3f Volt",V2)
printf(" \n I1 = Current I1 = %.3f A",I1)
printf(" \n I2 = Current I2 = %.3f A",I2)
printf(" \n I3 = Current I3 = %.3f A",I3)
printf(" \n I4 = Current I4 = %.3f A",I4)
printf(" \n I5 = Current I5 = %.3f A",I5)
|
d14ffe3208822fe36ce3738b0d737c9cc6c7f4ec | 63c8bbe209f7a437f8bcc25dc1b7b1e9a100defa | /test/0055.tst | 97954b3e3f4e2d4687f8a86d02ddf5ded2a371d2 | [] | no_license | fmeci/nfql-testing | e9e7edb03a7222cd4c5f17b9b4d2a8dd58ea547c | 6b7d465b32fa50468e3694f63c803e3630c5187d | refs/heads/master | 2021-01-11T04:09:48.579127 | 2013-05-02T13:30:17 | 2013-05-02T13:30:17 | 71,239,280 | 0 | 0 | null | 2016-10-18T11:01:57 | 2016-10-18T11:01:55 | Python | UTF-8 | Scilab | false | false | 309 | tst | 0055.tst | spliTTER IG {}
fILtEr RRv { }
FilTER Y {nOt P Or nj }
V -> YC
GROUper k {MoDUlE MmGzI{ } MoDULE Y{ fAv < UAKXT DEltA 56 YT < R RdelTA 5 } aggRegATE UX }
UngRoupEr N { }
GrouPFiLteR aFaw {}
meRGeR n { MoDule T { braNches vIs } MODUle Q { BrAncHEs n } MoDule x { bRaNCheS c, z, mQ } ExpOrT Fpr } |
dcd8ef36f3ab0816900fb479735747ca21359150 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3792/CH2/EX2.15/Ex2_15.sce | 43e3ca53814461dd3ffc104fefc2943d14650c3e | [] | 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 | 300 | sce | Ex2_15.sce | // Example 2_15
clc;funcprot(0);
// Given data
v_A=0.3;// m/s
// Calculation
// Solution (I).
// v_A=y_A,v_B=y_B
v_B=-(2*v_A)/3;// m/s
printf("\nThe velocity of B,v_B=%0.1f m/s",v_B);
// Solution (II).
v_B=abs((2/3)*v_A);// m/s
printf("\nThe velocity of B,v_B=%0.1f m/s (upward)",v_B);
|
751ad3e2a34150482679ad181047d879d7d240ec | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/scicos/getoutputs.sci | 705d12718c5e4a4ce4cc05d336bc83b88738496b | [
"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 | 100 | sci | getoutputs.sci | function [x,y,t]=getoutputs(o)
// Copyright INRIA
execstr('[x,y,t]='+o(5)+'(''getoutputs'',o)')
|
451a16d8253e580a08131ffba8e8a97f8a237fd1 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1382/CH2/EX2.8.b/ex_2_8_b.sce | 94016f34940651494be0bce9717024d1a9bec978 | [] | 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 | 136 | sce | ex_2_8_b.sce | // Example 2.8.b: Calculate stability factor
Beta=100;//Common emitter D.C. Current gain
S=1+Beta ;
disp (S,"The Stability factor")
|
b0c498bcd67575788e5282d0582e9ff78edc4763 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1853/CH2/EX2.9/Ex2_9.sce | f4410edac3f103bc7495b1df10e194bb925ff569 | [] | 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 | 458 | sce | Ex2_9.sce |
//calculate the circuit current
u=1//for air gap
F=1.5e-3//flux
A=9e-4 //area
B=F/A
H=B/(4*3.14*10^-7*u)
l=4e-3//air gap
S=H*l//amps turns in air gap
l=4e-3//air gap
u1=800// for iron gap
A1=750e-6
B1=F/A1
H1=B1/(4*3.14*10^-7*u1)
l1=270e-3
S1=H1*l1
u2=1000//for P,Q,R
H2=B/(4*3.14*10^-7*u2)
Ip=135e-3
Iq=270e-3
Ir=135e-3
S2=H2*(Ip+Iq+Ir)//amps turns
TNn=S+S1+S2
TN=4000
EI=TNn/TN
disp('exciting current= '+string(EI)+' amps' )
|
2ac953153f6216133010096a4d181f1a9e7dc34b | ac66d3377862c825111275d71485e42fdec9c1bd | /Resources/res/map/map1308.sce | 157a19352da38bf3bc31498d2ee46bbf60413f45 | [] | no_license | AIRIA/CreazyBomber | 2338d2ad46218180f822682d680ece3a8e0b46c3 | 68668fb95a9865ef1306e5b0d24fd959531eb7ad | refs/heads/master | 2021-01-10T19:58:49.272075 | 2014-07-15T09:55:00 | 2014-07-15T09:55:00 | 19,776,025 | 0 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 3,158 | sce | map1308.sce | <?xml version="1.0" encoding="UTF-8"?>
<Project Name="map1308" Width="13" Height="13" CellSize="40" BackgroundSize="1" Background="11plus.png">
<Cell Name="房子" X="2" Y="1" />
<Cell Name="房子" X="3" Y="1" />
<Cell Name="房子" X="4" Y="1" />
<Cell Name="房子" X="5" Y="1" />
<Cell Name="房子" X="6" Y="1" />
<Cell Name="房子" X="7" Y="1" />
<Cell Name="房子" X="8" Y="1" />
<Cell Name="房子" X="9" Y="1" />
<Cell Name="房子" X="10" Y="1" />
<Cell Name="房子" X="11" Y="1" />
<Cell Name="出生点" X="1" Y="2" />
<Cell Name="冰块" X="2" Y="2" />
<Cell Name="bc-投雪球-左" X="11" Y="2" arg0="2" arg1="1,0" arg2="9" />
<Cell Name="房子" X="2" Y="3" />
<Cell Name="房子" X="3" Y="3" />
<Cell Name="房子" X="4" Y="3" />
<Cell Name="房子" X="5" Y="3" />
<Cell Name="房子" X="6" Y="3" />
<Cell Name="房子" X="7" Y="3" />
<Cell Name="房子" X="8" Y="3" />
<Cell Name="冰块" X="9" Y="3" />
<Cell Name="bc-投雪球-右" X="1" Y="4" arg0="3" arg1="1,0" arg2="9" />
<Cell Name="食人鱼-左" X="11" Y="4" arg0="2" arg1="1.00" />
<Cell Name="食人鱼-右" X="1" Y="5" arg0="3" arg1="1.00" />
<Cell Name="冰块" X="3" Y="5" />
<Cell Name="房子" X="4" Y="5" />
<Cell Name="房子" X="5" Y="5" />
<Cell Name="房子" X="6" Y="5" />
<Cell Name="房子" X="7" Y="5" />
<Cell Name="房子" X="8" Y="5" />
<Cell Name="房子" X="9" Y="5" />
<Cell Name="房子" X="10" Y="5" />
<Cell Name="房子" X="11" Y="5" />
<Cell Name="食人鱼-右" X="1" Y="6" arg0="3" arg1="1.00" />
<Cell Name="bc-投雪球-左" X="11" Y="6" arg0="2" arg1="1,0" arg2="9" />
<Cell Name="房子" X="1" Y="7" />
<Cell Name="房子" X="2" Y="7" />
<Cell Name="房子" X="3" Y="7" />
<Cell Name="房子" X="4" Y="7" />
<Cell Name="房子" X="5" Y="7" />
<Cell Name="房子" X="6" Y="7" />
<Cell Name="房子" X="7" Y="7" />
<Cell Name="房子" X="8" Y="7" />
<Cell Name="冰块" X="9" Y="7" />
<Cell Name="食人鱼-左" X="11" Y="7" arg0="2" arg1="1.00" />
<Cell Name="bc-投雪球-右" X="1" Y="8" arg0="3" arg1="1,0" arg2="9" />
<Cell Name="食人鱼-左" X="11" Y="8" arg0="2" arg1="1.00" />
<Cell Name="食人鱼-右" X="1" Y="9" arg0="3" arg1="1.00" />
<Cell Name="冰块" X="3" Y="9" />
<Cell Name="房子" X="4" Y="9" />
<Cell Name="房子" X="5" Y="9" />
<Cell Name="房子" X="6" Y="9" />
<Cell Name="房子" X="7" Y="9" />
<Cell Name="房子" X="8" Y="9" />
<Cell Name="房子" X="9" Y="9" />
<Cell Name="房子" X="10" Y="9" />
<Cell Name="房子" X="11" Y="9" />
<Cell Name="食人鱼-右" X="1" Y="10" arg0="3" arg1="1.00" />
<Cell Name="食人鱼-右" X="3" Y="10" arg0="3" arg1="1.00" />
<Cell Name="食人鱼-右" X="7" Y="10" arg0="3" arg1="1.00" />
<Cell Name="通关点-1" X="8" Y="10" />
<Cell Name="冰块" X="10" Y="10" />
<Cell Name="飞鱼(怪)" X="11" Y="10" arg0="14" />
<Cell Name="bc-投雪球-右" X="1" Y="11" arg0="3" arg1="2,0" arg2="3" />
<Cell Name="食人鱼-右" X="5" Y="11" arg0="3" arg1="1.00" />
<Cell Name="bc-投雪球-左" X="11" Y="11" arg0="2" arg1="2,0" arg2="5" />
</Project> |
eb200668974204e791b59e33192344090ba7e912 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.5/Unix-Windows/scilab-2.5/tests/examples/rand.man.tst | 6bb5024ca53c90f0e88b726d15ac36c8273e07bc | [
"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 | 88 | tst | rand.man.tst | clear;lines(0);
x=rand(10,10,'uniform')
rand('normal')
rand('info')
y=rand(x,'normal');
|
0e9857eda8ff4488c01197a74fc83d27f94ed039 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1820/CH10/EX10.4/Example10_4.sce | 2e166e2570b8d927d324f007f29f4e7697108c14 | [] | 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,610 | sce | Example10_4.sce | // ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN
// TURAN GONEN
// CRC PRESS
// SECOND EDITION
// CHAPTER : 10 : PROTECTIVE EQUIPMENT AND TRANSMISSION SYSTEM PROTECTION
// EXAMPLE : 10.4 :
clear ; clc ; close ; // Clear the work space and console
// GIVEN DATA
z_l = 0.2 + %i * 0.7 ; // Line impedance in pu
f_l = 0.7 ; // Fault point at a distance from A in pu
f_m = 1.2 ; // magnitude of fault current in pu
l = 10.3 ; // Line spacing in ft
p = 100 ; // Power in MVA
v = 138 ; // voltage in kV
i = 418.4 ; // current in A
z = 190.4 ; // Impedance in Ω
// CALCULATIONS
// For case (a)
I = f_m * i ; // Current in arc in A
R_arc = 8750 * l/(I^1.4) ; // Arc resistance in Ω
R_arc1 = R_arc/z ; // Arc resistance in pu
// For case (b)
Z_L = z_l * f_l ;
Z_r = Z_L + R_arc1 ; // Impedance seen by the relay in pu
// For case (c)
phi_1 = atand( imag(Z_L),real(Z_L) ) ; // Line impedance angle without arc resistance in degree
phi_2 = atand( imag(Z_r),real(Z_r) ) ; // Line impedance angle with arc resistance in degree
// DISPLAY RESULTS
disp("EXAMPLE : 10.4 : SOLUTION :-") ;
printf("\n (a) Value of arc resistance at fault point in Ω , R_arc = %.2f Ω \n",R_arc) ;
printf("\n Value of arc resistance at fault point in pu , R_arc = %.2f pu \n",R_arc1) ;
printf("\n (b) Value of line impedance including the arc resistance , Z_L + R_arc = pu \n") ; disp(Z_r) ;
printf("\n (c) Line impedance angle without arc resistance , Φ = %.2f degree \n",phi_1) ;
printf("\n Line impedance angle with arc resistance , Φ = %.2f degree \n",phi_2) ;
|
91afcfa6d0b11dfa4b0d67905dc9ef20c430a4d0 | 448b934390596180e5965efadbcbe8e13809ab8c | /macros/pkgFindObj.sci | cd8dbb9e6a0e7abb927db1e91c1d7a6328d57bca | [] | no_license | pirpyn/pkg-scilab | 3834d8b5e5e7cbb71e2d2cff14ea763d32259bf0 | b3ac0d499c9b446d02159f29068616fcf2a57f56 | refs/heads/master | 2021-01-19T17:36:20.707736 | 2017-12-11T21:31:23 | 2017-12-11T21:31:23 | 101,072,162 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 578 | sci | pkgFindObj.sci | function [child,st]=pkgFindObj(tag,parent)
// same as findobj, but only compute it on the given parent frame
// usefull if 2 frames have uicontrol with the same tag value
if argn(2) == 1
if exists('gcbo')
parent = pkgGetRootHandle(gcbo)
else
parent=gcf()
end
end
st = %f
child=[]
if parent.tag == tag then
st = %t
child=parent
else
if parent.children <> [] then
for i=1:size(parent.children,'*')
if ~st then
[child,st]=pkgFindObj(tag,parent.children(i))
end
end
end
end
endfunction
|
b6cdbfd2daa8e5ced025feb691208d82ad3fb320 | 449d555969bfd7befe906877abab098c6e63a0e8 | /551/CH9/EX9.18/18.sce | a6bff6d7fd095cccb7d31869627ddefee98227a4 | [] | 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 | 987 | sce | 18.sce | clc
m_O2=4; //kg
m_N2=6; //kg
p=4*10^5; //Pa
T=300; //K
M_O2=32;
M_N2=28;
m=10; //kg
disp("(i) The mole fraction of each component")
n_O2=m_O2/M_O2;
n_N2=m_N2/M_N2;
x_O2=n_O2/(n_O2+n_N2);
disp("x_O2=")
disp(x_O2)
x_N2=n_N2/(n_N2+n_O2);
disp("x_N2=")
disp(x_N2)
disp("(ii) The average molecular weight")
M=(n_O2*M_O2 + n_N2*M_N2)/(n_O2 + n_N2);
disp("M=")
disp(M)
disp("(iii) The specific gas constant")
R0=8.314;
R=R0/M;
disp("R=")
disp(R)
disp("kJ/kg K")
disp("(iv) The volume and density")
V=m*R*T*10^3/p;
disp("V=")
disp(V)
disp("m^3")
rho=(m_O2/V) + (m_N2/V);
disp("density=")
disp(rho)
disp("kg/m^3")
disp("(v) The partial pressures and partial volumes")
p_O2=n_O2*R0*10^3*T/V/10^5; //bar
disp("p_O2=")
disp(p_O2)
disp("bar")
p_N2=n_N2*R0*10^3*T/V/10^5; //bar
disp("p_N2=")
disp(p_N2)
disp("bar")
V_O2=x_O2*V;
disp("V_O2=")
disp(V_O2)
disp("m^3")
V_N2=x_N2*V;
disp("V_N2=")
disp(V_N2)
disp("m^3")
|
d1bba6d8762089e7a11ac0372f89ca1b52f58b8f | 449d555969bfd7befe906877abab098c6e63a0e8 | /26/CH4/EX4.4.31a/4_4_31_parta.sce | 222a2595dff20f3ce578bf5995becfe6d860dd38 | [] | 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 | 374 | sce | 4_4_31_parta.sce | disp('to check if the polynomials span R3')
disp('placing the coordinate vectors of the polynomial into the columns of a matrix')
a=[1 -3 -4 1;-3 5 5 0;5 -7 -6 1]
disp(a,'A=')
disp('performing row operations')
a(2,:)=a(2,:)+3*a(1,:)
a(3,:)=a(3,:)-5*a(1,:)
disp(a)
a(3,:)=a(3,:)+2*a(2,:)
disp(a)
disp('the four vectors DO NOT span R3 as there is no pivot in row 3') |
b16b63af7671880fb4afd88b280bf8718d18f793 | 449d555969bfd7befe906877abab098c6e63a0e8 | /680/CH10/EX10.16/10_16.sce | 6fc858dca2262ab3bc34425c8e5a328a353a727d | [] | 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 | 492 | sce | 10_16.sce | //Problem 10.16:
//initializing the variables:
c = 0.25
mo = 0.35
w = 0.15
in = 0.25
ql = 0.05
co2 = 0.118
co = 13; // in ppm
o2 = 0.104
NHVc = 14000; // in Btu/lb
NHVmo = 25000; // in Btu/lb
NHVw = 0; // in Btu/lb
NHVin = -1000; // in Btu/lb
//calculation:
NHV = c*NHVc + w*NHVw + mo*NHVmo + in*NHVin
EA = (1 - ql)*o2*100/(21-o2*100)
T = 60 + NHV/(0.325*[1 + (1+EA)*7.5E-4*NHV])
printf("\n\nResult\n\n")
printf("\n the theoretical flame temperature is %.0f deg F",T) |
0252e420acef4d056d13ae74f99de759f1857cdf | b9602336613b26d0b9c22a09d219c0ed8e158b4e | /Examples/Examples_MatFunc/expmatSym.sce | 139d5f0528104b5aa78a2c756046799110b028ef | [
"BSD-2-Clause"
] | permissive | CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox | d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd | 70c97cda4e0dd54df0a638e9b99f380c09ffa37e | refs/heads/master | 2022-12-11T01:28:28.742041 | 2020-08-26T12:24:27 | 2020-08-26T12:24:27 | 290,481,428 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 243 | sce | expmatSym.sce | // Function Name: expmatSym
// Returns the Matrix exponential of the input matrix(symmetric/hermitian matrix).
// Calculating the expmatSym.
inputMat = [-1.2, 1, 1.9; -4, 2.6, 5; -2.3, 8, -7];
result = armaMatFunc("expmatSym",inputMat)
|
3d3b7b115c310a19adcb1b1168f5bec924dfee8d | 449d555969bfd7befe906877abab098c6e63a0e8 | /3754/CH28/EX28.1/28_1.sce | 3e6b05039319d6f1b42441e5184375fcce71c6c0 | [] | 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 | 292 | sce | 28_1.sce | clear//
//Variables
L = 150.0 * 10**-6 //Inductance (in Henry)
C = 100.0 * 10**-12 //Capacitance (in Farad)
//Calculation
fo = 0.159 / (L * C)**0.5 //Resonant frequency (in Hertz)
//Result
printf("\n The resonant frequency is %0.1f MHz.",fo * 10**-6)
|
20e3bcd453a68f337620cb38a4ef119f0897aa16 | 449d555969bfd7befe906877abab098c6e63a0e8 | /839/CH25/EX25.2/Example_25_2.sce | 5d7eae7be5a3a5b0b4b258152a1a4af170656aa4 | [] | 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,411 | sce | Example_25_2.sce | //clear//
clear;
clc;
//Example 25.2
//Solution
cbyc0 =0.05;
u0 = 58; //[cm/s]
Dv = 0.37; //[m^2/g]
c0 = 365; //[ppm]
S = 1194; //[m^2/g]
T = 25; //[C]
rho_b = 0.461; //[g/cm^3]
P = 737; //[mm Hg]
M = 74.12; //[g/mol]
eps = 0.457;
t = 1:0.5:8.5;
t(4) = 2.4; t(5) = 2.8; t(6) = 3.3;
cbyc0 =[0.005,0.01,0.027,0.05,0.1,0.2,0.29,0.56,0.0019,0.003,0.0079,0.018,0.039,0.077,0.15,0.24];
t1 = t(1:8);
t2 = t(9:16);
cbyc01 = cbyc0(1:8);
cbyc02 = cbyc0(9:16);
plot(t1,cbyc01,t2,cbyc02);
xgrid();
xlabel('t, Hours');
ylabel('c/c0');
title('Brakthrough curves for Example 25.2');
legend('L = 8cm','L = 16cm');
//(a)
FA = u0*c0*10^-6/22400*273/298*737/760*M*3600; //[g/cm^2-h]
// The total solute adsorbed is the area above the graph multiplied
//by FA. For the 8-cm bed, the area is
Area_bed = 4.79; //[h]
//This area corresponds to the ideal time that would be required to adsorb
//the same amount if the breakthrough curve were a vertical line. The mass
//of carbon per unit cross-sectional area of the bed is
Ac = 8*rho_b; //[g/cm^2]
//Thus,
Wsol = FA*Area_bed/Ac; //[g solute/g carbon]
//At the break point, where
cbyc0_break = 0.05;
//and
t_break =2.4; //[h]
Area_bed_break = 2.37; //[h]
//The amount adsorbed up to the break point is then
Wb = FA*t_break/Ac; //[g solute/ g carbon]
ratio_W = Wb/Wsol;
//Thus 50 percent of the bed capacity is unused, which can be representd
//by a length 4 cm.
//For the 16-cm bed the breakthrough curve has the same initial slope as the cuve
//for 8-cm bed, and although data were not taken beyond cbyc0 = 0.25,
//the curves are assumed to be parallel
//For the entire bed,
tT = 9.59; //[h]
Wsat = FA*tT/(16*rho_b); //[g solute/ g carbon]
//At
cbyc0_break = 0.05;
t_break =7.1; //[h]
Area_break = 7.07; //[h]
Wb = FA*Area_break/(16*rho_b); //[g solute/g carbon]
ratio_W = Wb/Wsat;
//At the break point, 74 percent of the bed capacity is used,
//which corresponds to an unused section of length 0.26*16 cm.
//Within experimental error, the lengths of unused bed agree,
//and 4.1 cm is expected value for a still longer bed.
disp('cm',4.2,'length of the bed used','percent',ratio_W,'saturation capacity of the carbon')
//(b)
L = 32; //[cm]
L_exp = L-4.1; //[cm]
//Fraction of the bed used
fra_bed = L_exp/L;
//The break-point time is,
tb = L_exp*rho_b*Wsat/FA; //[h]
disp('h',tb,'break point-time ')
|
3637bc426fd9d19ccc170d0442057f3ccd8f9627 | 87bc77e7099940c476a849ac22f0c25912ab345e | /LA/Assignment2/Class_4.sce | 580ca1f82c91c971e631117db14e70294487427e | [] | no_license | Arindaam/Class-work | 8f4af9cc39301fe7231bfffe4b3e49842ddf3775 | c8ba9fa3981d8b352c227e2dede48e776c049d4c | refs/heads/master | 2021-06-26T09:55:33.884258 | 2021-06-22T15:51:51 | 2021-06-22T15:51:51 | 207,601,170 | 2 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 479 | sce | Class_4.sce | clc;clear;close;
n=3
disp("Enter matrix A")
for i=1:n
for j=1:n
a(i,j)=input("Enter")
end
end
disp('matrix is ')
disp(a)
a(2,:)=a(2,:)-(a(2,1)/a(1,1))*a(1,:)
a(3,:)=a(3,:)-(a(3,1)/a(1,1))*a(1,:)
disp(a)
a(3,:)=a(3,:)-(a(3,2)/a(2,2))*a(2,:)
disp(a)
a(1,:)=a(1,:)/a(1,1)
a(2,:)=a(2,:)/a(2,2)
disp(a)
for i=1:n
for j=i:n
if(a(i,j)<>0)
disp('is a pivot element ',j,'column')
break
end
end
end
|
326824b805786f6b01b9d3702400808aeec9ce2f | 449d555969bfd7befe906877abab098c6e63a0e8 | /608/CH3/EX3.10/3_10.sce | 1a7eb6c38d2b2d4932921e57edbd6e9cad7621b7 | [] | 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 | 437 | sce | 3_10.sce | //Problem 3.10: A carbon resistor has a resistance of 1 kohms at 0°C. Determine its resistance at 80°C. Assume that the temperature coefficient of resistance for carbon at 0°C is 0.0005/°C
//initializing the variables:
R0 = 1000; // in ohms
T0 = 0; // in °C
T1 = 80; // in °C
a0 = -0.0005; // in per°C
pi = 3.14;
//calculation:
R80 = R0*[1 + (a0*T1)]
printf("\n\nResult\n\n")
printf("\nresistance %.0f Ohm\n",R80) |
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).
|
2ae169c270a89930665263c907786d8e6fed5c10 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3838/CH2/EX2.21.a/EX2_21_A.sce | a11aeea5a9afba6d2751cae4e71e23a77084abe3 | [] | 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 | 92 | sce | EX2_21_A.sce | //EXAMPLE 2.21.A
clc;
x1=100;
x=integrate('3*t','t',0,x1);
disp(x);
disp('valid for t>=0');
|
4d19074353dc35a31099e49012e1f916e1c2daca | 449d555969bfd7befe906877abab098c6e63a0e8 | /98/CH2/EX2.15/example2_15.sce | a5b26092879b1c70f428295d4290cffa63e4f323 | [] | 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 | 612 | sce | example2_15.sce | //Chapter 2
//Example 2_15
//PAge 30
clear;clc;
fc=1e3;
ugpd=4e3;
cv=1e4;
n_alternator=0.96;
n_mech=0.95;
//specific fuel consumption
printf("(i)\t Specific fuel consumption = %.2f kg/kWh \n\n", fc/ugpd);
//overall efficiency
heat_per_day = fc*cv;
e=ugpd*860;
printf("\t\t Electrical output in heat units per day =%3.0f kcal \n\n", e);
n_overall = e/1e7*100;
printf("(ii)\t Overall efficiency = %.2f %% \n\n", n_overall);
//thermal efficiency
n_engine = n_overall/n_alternator;
printf("\t\t Engine efficiency = %.2f %% \n\n", n_engine);
printf("(iii)\t Thermal efficiency = %.2f %% \n\n", n_engine/n_mech);
|
7917857848f76cabfbc43d9b9a0be1ab63e3a6d9 | a5de878687ee2e72db865481785dafbeda373e2a | /trunck/OpenPR-0.0.2/demos/svmtrain.dem.sce | 262a41d71d95b98a6cc878051563815a75cb379a | [
"BSD-3-Clause"
] | permissive | Augertron/OpenPR | 8f43102fd5811d26301ef75e0a1f2b6ba9cbdb73 | e2b1ce89f020c1b25df8ac5d93f6a0014ed4f714 | refs/heads/master | 2020-05-15T09:31:08.385577 | 2011-03-21T02:51:40 | 2011-03-21T02:51:40 | 182,178,910 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 268 | sce | svmtrain.dem.sce | //
mode(-1);
lines(0);
// DEMO START
data_path = SCI+'/contrib/OpenPR-0.0.2/etc/data/heart_scale';
[label_vector, instance_vector] = readsparse(data_path);
model = svmtrain(label_vector, instance_vector, '-c 1 -g 0.07');
disp("svm model:")
disp(model)
// DEMO END
|
0d4a6bc2831aec1c78da4ce2ae4ac0104964496a | f04d3d47f893de08cd99a31b4870112915b80d5b | /Datasets/vehicle/data2.tst | 8ad3d0899b835096513ba35f897467e301527467 | [] | no_license | MesumRaza/MyWorkInPython | f5364b8514943e44c7200123653da9f4551251b1 | bd8c9b3ca2fb02ae6d2b626054fa3cd32c28b330 | refs/heads/master | 2021-08-19T21:46:41.412995 | 2017-11-27T13:37:52 | 2017-11-27T13:37:52 | 111,728,604 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 15,175 | tst | data2.tst | 0.23913 0.461538 0.361111 0.218341 0.197802 0.0754717 0.215686 0.571429 0.166667 0.371429 0.2 0.153477 0.427673 0.184211 0.0909091 0.0731707 0.266667 0.233333 class2
0.521739 0.653846 0.944444 0.467249 0.197802 0.150943 0.666667 0.142857 0.583333 0.542857 0.536842 0.598321 0.685535 0.171053 0.318182 0.707317 0.4 0.533333 class3
0.347826 0.346154 0.555556 0.20524 0.164835 0.0754717 0.20915 0.571429 0.166667 0.3 0.189474 0.148681 0.383648 0.197368 0.772727 0.317073 0.3 0.266667 class1
0.282609 0.384615 0.388889 0.209607 0.164835 0.0943396 0.248366 0.514286 0.166667 0.342857 0.257895 0.183453 0.345912 0.210526 0.181818 0.219512 0.4 0.366667 class2
0.478261 0.5 0.902778 0.502183 0.230769 0.132075 0.581699 0.2 0.5 0.428571 0.489474 0.501199 0.578616 0.131579 0.227273 0.926829 0.5 0.7 class3
0.304348 0.423077 0.347222 0.0873362 0.0989011 0.0754717 0.24183 0.571429 0.166667 0.371429 0.210526 0.164269 0.389937 0.368421 0.181818 0.292683 0.1 0.0333333 class2
0.195652 0.461538 0.361111 0.646288 0.868132 0.943396 0.235294 0.542857 0.166667 0.371429 0.563158 0.170264 0.477987 0.789474 0.0454545 0.0243902 0.166667 0.133333 class2
0.478261 0.346154 0.625 0.305677 0.208791 0.132075 0.267974 0.514286 0.166667 0.371429 0.2 0.195444 0.257862 0.0789474 0.5 0.121951 0.666667 0.766667 class0
0.456522 0.346154 0.388889 0.200873 0.186813 0.0943396 0.104575 0.742857 0.0833333 0.357143 0.126316 0.0743405 0.314465 0.131579 0.636364 0.121951 0.533333 0.5 class0
0.413043 0.192308 0.277778 0.113537 0.164835 0.0566038 0.0130719 0.914286 0 0.2 0.0263158 0.0119904 0.176101 0.171053 0.636364 0.121951 0.466667 0.433333 class0
0.630435 0.461538 0.597222 0.41048 0.197802 0.0566038 0.535948 0.2 0.416667 0.4 0.5 0.470024 0.36478 0.263158 0 0.658537 0.566667 0.333333 class2
0.76087 0.769231 0.875 0.427948 0.186813 0.150943 0.705882 0.114286 0.666667 0.714286 0.494737 0.631894 0.660377 0.184211 0.5 0.243902 0.4 0.6 class1
0.565217 0.5 0.902778 0.458515 0.186813 0.169811 0.555556 0.228571 0.5 0.485714 0.431579 0.468825 0.314465 0.0789474 0 0.804878 0.6 0.8 class3
0.26087 0.230769 0.513889 0.20524 0.131868 0.113208 0.248366 0.542857 0.166667 0.228571 0.242105 0.176259 0.150943 0.184211 0 0.390244 0.266667 0.4 class3
0.152174 0.423077 0.388889 0.135371 0.131868 0.113208 0.248366 0.542857 0.166667 0.385714 0.210526 0.173861 0.402516 0.276316 0.318182 0.292683 0.133333 0.133333 class2
0.565217 0.576923 0.541667 0.414847 0.230769 0.0754717 0.477124 0.257143 0.416667 0.5 0.378947 0.407674 0.389937 0.197368 0.227273 0.195122 0.633333 0.466667 class2
0.347826 0.269231 0.513889 0.240175 0.197802 0.132075 0.20915 0.571429 0.166667 0.328571 0.2 0.155875 0.213836 0.144737 0 0.121951 0.466667 0.633333 class0
0.456522 0.576923 0.597222 0.253275 0.186813 0.150943 0.287582 0.485714 0.166667 0.5 0.247368 0.207434 0.490566 0.197368 0.181818 0.341463 0.3 0.5 class0
0.0869565 0.192308 0.486111 0.174672 0.131868 0.0754717 0.228758 0.571429 0.166667 0.2 0.194737 0.157074 0.169811 0.276316 0.727273 0.487805 0.166667 0.2 class3
0.326087 0.0769231 0.138889 0.0742358 0.120879 0.0566038 0.0130719 0.942857 0 0.0571429 0.0105263 0.00959233 0.18239 0.197368 0.954545 0.097561 0.2 0.2 class3
0.434783 0.384615 0.625 0.126638 0.0769231 0.150943 0.281046 0.514286 0.166667 0.5 0.231579 0.20024 0.352201 0.210526 0.545455 0.317073 0.266667 0.5 class0
0.478261 0.538462 0.666667 0.253275 0.186813 0.169811 0.30719 0.485714 0.25 0.557143 0.242105 0.224221 0.477987 0.157895 0.545455 0.317073 0.433333 0.566667 class0
0.586957 0.461538 0.833333 0.458515 0.197802 0.113208 0.581699 0.171429 0.5 0.414286 0.531579 0.51199 0.503145 0.171053 0.227273 0.121951 0.433333 0.466667 class3
0.782609 0.769231 0.958333 0.510917 0.241758 0.188679 0.712418 0.142857 0.666667 0.728571 0.505263 0.633094 0.647799 0.171053 0.590909 0.682927 0.4 0.666667 class1
0.26087 0.384615 0.333333 0.104803 0.0989011 0.113208 0.248366 0.571429 0.166667 0.371429 0.2 0.167866 0.402516 0.302632 0.409091 0.341463 0.133333 0.1 class2
0.434783 0.615385 0.541667 0.331878 0.197802 0.0943396 0.398693 0.314286 0.333333 0.571429 0.310526 0.334532 0.534591 0.144737 0.227273 0.243902 0.7 0.7 class2
0.347826 0.153846 0.194444 0.0655022 0.0659341 0.0566038 0.143791 0.685714 0.0833333 0.128571 0.110526 0.0983213 0.232704 0.263158 0.727273 0.341463 0.266667 0.133333 class1
0.369565 0.576923 0.527778 0.165939 0.131868 0.169811 0.313725 0.485714 0.25 0.6 0.226316 0.223022 0.477987 0.223684 0.454545 0.268293 0.233333 0.366667 class0
0.413043 0.269231 0.583333 0.257642 0.175824 0.132075 0.222222 0.542857 0.166667 0.314286 0.184211 0.161871 0.176101 0.0657895 0.409091 0 0.766667 0.833333 class0
0.369565 0.115385 0.236111 0.113537 0.10989 0.0754717 0.0588235 0.857143 0 0.128571 0.0368421 0.0383693 0.144654 0.118421 1 0.560976 0.466667 0.466667 class1
0.26087 0.461538 0.430556 0.200873 0.175824 0.113208 0.202614 0.571429 0.166667 0.414286 0.215789 0.147482 0.440252 0.171053 0.0909091 0.0731707 0.366667 0.5 class0
0.369565 0.5 0.555556 0.170306 0.164835 0.169811 0.30719 0.485714 0.25 0.542857 0.205263 0.218225 0.484277 0.197368 0.772727 0.170732 0.3 0.4 class0
0.347826 0.346154 0.416667 0.19214 0.164835 0.0943396 0.228758 0.542857 0.166667 0.357143 0.242105 0.166667 0.27673 0.223684 0.0909091 0.146341 0.333333 0.266667 class2
0.26087 0.307692 0.361111 0.222707 0.197802 0.377358 0.24183 0.542857 0.166667 0.3 0.226316 0.17506 0.289308 0.210526 0.272727 0.390244 0.266667 0.333333 class2
0.521739 0.461538 0.666667 0.30131 0.21978 0.150943 0.294118 0.485714 0.25 0.557143 0.226316 0.217026 0.301887 0.105263 0.363636 0.292683 0.533333 0.633333 class0
0.586957 0.576923 0.763889 0.458515 0.230769 0.0943396 0.568627 0.171429 0.5 0.457143 0.452632 0.504796 0.572327 0.184211 0.318182 0.268293 0.533333 0.433333 class2
0.586957 0.5 0.888889 0.349345 0.142857 0.132075 0.555556 0.228571 0.5 0.414286 0.484211 0.472422 0.559748 0.184211 0.590909 0.317073 0.433333 0.533333 class1
0.282609 0.115385 0.513889 0.266376 0.142857 0.0943396 0.248366 0.542857 0.166667 0.142857 0.231579 0.176259 0.138365 0.0921053 0 0.780488 0.666667 0.733333 class1
0.521739 0.346154 0.847222 0.358079 0.131868 0.132075 0.48366 0.285714 0.416667 0.285714 0.410526 0.392086 0.371069 0.105263 0.318182 1 0.6 0.833333 class1
0.543478 0.230769 0.388889 0.0742358 0.021978 0.0943396 0.143791 0.714286 0.0833333 0.342857 0.178947 0.0923261 0.157233 0.210526 0.181818 0.0243902 0.333333 0.166667 class0
0.630435 0.807692 0.833333 0.257642 0.0659341 0.150943 0.660131 0.142857 0.583333 0.785714 0.468421 0.581535 0.578616 0.223684 0.545455 0.658537 0.366667 0.466667 class3
0.347826 0.538462 0.597222 0.951965 0.945055 0.867925 0.300654 0.485714 0.25 0.642857 0.521053 0.215827 0.421384 0.5 0 0.341463 0.266667 0.433333 class0
0.282609 0.576923 0.486111 0.139738 0.120879 0.150943 0.320261 0.485714 0.25 0.642857 0.210526 0.224221 0.477987 0.210526 0.136364 0.0243902 0.233333 0.366667 class0
0.304348 0.346154 0.333333 0.200873 0.186813 0.150943 0.137255 0.685714 0.0833333 0.342857 0.142105 0.0959233 0.314465 0.105263 0.318182 0.0243902 0.566667 0.666667 class0
0.326087 0.153846 0.319444 0.113537 0.120879 0.0566038 0.0849673 0.8 0.0833333 0.171429 0.0578947 0.0551559 0.226415 0.197368 0.636364 0.487805 0.266667 0.233333 class1
0.391304 0.346154 0.555556 0.253275 0.208791 0.113208 0.235294 0.514286 0.166667 0.385714 0.215789 0.176259 0.238994 0.144737 0.136364 0.121951 0.433333 0.6 class0
0.369565 0.153846 0.555556 0.292576 0.120879 0.132075 0.294118 0.457143 0.25 0.2 0.221053 0.226619 0.0377358 0.0131579 0.136364 0.439024 0.833333 0.933333 class1
0.173913 0.346154 0.319444 0.0917031 0.0879121 0.113208 0.24183 0.571429 0.166667 0.385714 0.189474 0.16307 0.396226 0.355263 0.318182 0.170732 0.1 0.0333333 class2
0.717391 0.615385 0.930556 0.393013 0.10989 0.169811 0.666667 0.142857 0.583333 0.614286 0.494737 0.582734 0.396226 0.105263 0 0.95122 0.533333 0.833333 class3
0.152174 0.384615 0.388889 0.069869 0.0769231 0.113208 0.248366 0.542857 0.166667 0.385714 0.215789 0.173861 0.421384 0.342105 0.181818 0.195122 0.1 0.0666667 class2
0.478261 0.461538 0.555556 0.358079 0.164835 0.0943396 0.339869 0.4 0.25 0.385714 0.305263 0.266187 0.433962 0.0789474 0.5 0.439024 0.766667 0.766667 class3
0.652174 0.807692 0.930556 0.497817 0.186813 0.188679 0.718954 0.114286 0.666667 0.8 0.478947 0.652278 0.566038 0.105263 0 0.439024 0.433333 0.633333 class3
0.586957 0.5 0.625 0.262009 0.186813 0.169811 0.333333 0.457143 0.25 0.642857 0.242105 0.243405 0.383648 0.157895 0.818182 0 0.433333 0.5 class0
0.391304 0.269231 0.5 0.292576 0.21978 0.0943396 0.24183 0.514286 0.166667 0.242857 0.205263 0.177458 0.220126 0.118421 0.181818 0.414634 0.533333 0.633333 class2
0.369565 0.384615 0.444444 0.296943 0.131868 0.113208 0.27451 0.457143 0.166667 0.371429 0.231579 0.211031 0.308176 0.0263158 0.681818 0.219512 0.9 0.933333 class1
0.434783 0.115385 0.333333 0.266376 0.241758 0.113208 0.156863 0.657143 0.0833333 0.257143 0.163158 0.113909 0.113208 0.105263 0.0909091 0.707317 0.566667 0.766667 class0
0.673913 0.653846 0.777778 0.467249 0.197802 0.150943 0.490196 0.257143 0.416667 0.542857 0.405263 0.411271 0.540881 0.0789474 0.136364 0.170732 0.633333 0.833333 class1
0.456522 0.423077 0.611111 0.489083 0.296703 0.0754717 0.470588 0.257143 0.416667 0.385714 0.410526 0.408873 0.283019 0.184211 0.181818 0.536585 0.666667 0.533333 class2
0.434783 0.0769231 0.444444 0.296943 0.164835 0.0943396 0.24183 0.514286 0.166667 0.0857143 0.205263 0.179856 0.100629 0.0394737 0.227273 0.731707 0.9 0.966667 class3
0.717391 0.615385 0.916667 0.467249 0.186813 0.132075 0.627451 0.171429 0.583333 0.571429 0.494737 0.552758 0.471698 0.118421 0.0454545 0.585366 0.466667 0.7 class1
0.347826 0.269231 0.541667 0.218341 0.186813 0.132075 0.20915 0.571429 0.166667 0.3 0.2 0.152278 0.251572 0.157895 0.363636 0.170732 0.4 0.533333 class0
0.804348 0.884615 0.875 0.519651 0.186813 0.0566038 0.901961 0 0.833333 0.728571 0.789474 0.892086 0.81761 0.342105 0.181818 0.146341 0.266667 0.0666667 class2
0.26087 0.115385 0.527778 0.196507 0.0879121 0.0943396 0.228758 0.542857 0.166667 0.142857 0.2 0.164269 0.157233 0.0657895 0.454545 0.585366 0.7 0.733333 class3
0.434783 0.346154 0.416667 0.117904 0.0989011 0.0943396 0.0980392 0.771429 0.0833333 0.385714 0.136842 0.0671463 0.27044 0.197368 0.227273 0.097561 0.433333 0.3 class0
0.304348 0.230769 0.472222 0.209607 0.120879 0.0754717 0.254902 0.514286 0.166667 0.257143 0.231579 0.183453 0.194969 0.144737 0.0454545 0.804878 0.366667 0.5 class1
0.391304 0.461538 0.486111 0.218341 0.10989 0.0754717 0.248366 0.514286 0.166667 0.4 0.210526 0.181055 0.446541 0.0921053 0.727273 0.0487805 0.566667 0.566667 class3
0.195652 0.192308 0.180556 0.0917031 0.131868 0.0566038 0.137255 0.714286 0.0833333 0.142857 0.115789 0.0899281 0.232704 0.368421 0 0 0.0333333 0.0666667 class3
0.73913 0.730769 0.847222 0.497817 0.186813 0.169811 0.588235 0.2 0.5 0.657143 0.468421 0.510791 0.522013 0.0789474 0.772727 0.0487805 0.7 0.833333 class3
0.543478 0.230769 0.569444 0.379913 0.186813 0.132075 0.352941 0.4 0.25 0.285714 0.284211 0.276978 0.138365 0.0394737 0.363636 0.463415 0.7 0.8 class1
0.26087 0.269231 0.444444 0.152838 0.131868 0.0566038 0.130719 0.685714 0.0833333 0.242857 0.152632 0.0911271 0.257862 0.118421 0.136364 0.219512 0.5 0.466667 class1
0.543478 0.807692 0.888889 0.358079 0.131868 0.150943 0.660131 0.171429 0.583333 0.771429 0.489474 0.576739 0.679245 0.184211 0.0454545 0.634146 0.333333 0.466667 class3
0.652174 0.807692 0.708333 0.327511 0.10989 0.169811 0.705882 0.142857 0.666667 0.742857 0.473684 0.627098 0.559748 0.171053 0.0454545 0.780488 0.333333 0.566667 class3
0.413043 0.115385 0.527778 0.266376 0.10989 0.113208 0.267974 0.485714 0.166667 0.142857 0.205263 0.197842 0.0943396 0.0131579 0.181818 0.463415 0.9 1 class1
0.804348 0.692308 0.888889 0.379913 0.10989 0.188679 0.660131 0.142857 0.583333 0.628571 0.505263 0.58753 0.509434 0.118421 0.818182 0.0487805 0.5 0.6 class1
0.195652 0.461538 0.388889 0.152838 0.186813 0.0754717 0.228758 0.571429 0.166667 0.357143 0.205263 0.16307 0.471698 0.276316 0 0.0243902 0.166667 0.1 class2
0.543478 0.192308 0.416667 0.0917031 0.0549451 0.113208 0.117647 0.771429 0.0833333 0.3 0.142105 0.0707434 0.144654 0.197368 0 0.317073 0.333333 0.133333 class0
0.76087 0.692308 0.875 0.406114 0.142857 0.169811 0.647059 0.142857 0.583333 0.6 0.484211 0.571942 0.490566 0.105263 0.318182 0.0731707 0.466667 0.633333 class3
0.717391 0.807692 0.875 0.248908 0 0.0377358 0.882353 0.0285714 0.833333 0.685714 0.715789 0.848921 0.836478 0.342105 0.181818 0.268293 0.166667 0.0666667 class2
0.456522 0.461538 0.569444 0.270742 0.21978 0.132075 0.215686 0.571429 0.166667 0.414286 0.178947 0.154676 0.440252 0.0921053 0.5 0.341463 0.6 0.7 class0
0.5 0.615385 0.805556 0.362445 0.131868 0.0754717 0.660131 0.142857 0.583333 0.485714 0.515789 0.594724 0.63522 0.236842 0.363636 0.682927 0.4 0.266667 class2
0.434783 0.576923 0.611111 0.200873 0.175824 0.169811 0.287582 0.514286 0.25 0.671429 0.215789 0.203837 0.496855 0.184211 0.363636 0.365854 0.3 0.466667 class0
0.326087 0.269231 0.527778 0.358079 0.285714 0.0754717 0.300654 0.428571 0.25 0.228571 0.289474 0.233813 0.245283 0.184211 0.0454545 0.268293 0.566667 0.533333 class2
0.23913 0.230769 0.694444 0.331878 0.142857 0.0943396 0.424837 0.314286 0.333333 0.185714 0.415789 0.341727 0.226415 0.157895 0.181818 0.926829 0.466667 0.566667 class3
0.347826 0.423077 0.444444 0.244541 0.208791 0.0943396 0.20915 0.571429 0.166667 0.414286 0.189474 0.153477 0.377358 0.131579 0.5 0.0243902 0.5 0.566667 class2
0.434783 0.153846 0.458333 0.305677 0.230769 0.0943396 0.254902 0.485714 0.166667 0.185714 0.236842 0.195444 0.163522 0.118421 0.0454545 0.536585 0.666667 0.8 class2
0.347826 0.423077 0.416667 0.144105 0.120879 0.0754717 0.156863 0.657143 0.0833333 0.4 0.2 0.106715 0.358491 0.25 0.454545 0.0731707 0.333333 0.2 class0
0.630435 0.807692 0.916667 0.510917 0.230769 0.169811 0.620915 0.171429 0.583333 0.657143 0.515789 0.544365 0.811321 0.157895 0 0.634146 0.433333 0.633333 class1
0.108696 0.115385 0.277778 0.0524017 0.0989011 0.0754717 0.0718954 0.828571 0 0.0857143 0.0578947 0.0443645 0.0754717 0.25 0.136364 0.390244 0.0666667 0.133333 class3
0.391304 0.346154 0.361111 0.283843 0.208791 0.0943396 0.215686 0.514286 0.166667 0.314286 0.205263 0.169065 0.314465 0.105263 0.181818 0 0.833333 0.866667 class2
0.23913 0.0769231 0.180556 0.0786026 0.10989 0.0377358 0.0261438 0.942857 0 0.0714286 0.0263158 0.0143885 0.119497 0.223684 0.454545 0.658537 0.233333 0.3 class1
0.652174 0.5 0.916667 0.458515 0.208791 0.150943 0.594771 0.2 0.5 0.442857 0.457895 0.513189 0.63522 0.144737 0.409091 0.243902 0.5 0.6 class1
0.586957 0.307692 0.486111 0.441048 0.263736 0.0566038 0.418301 0.285714 0.333333 0.285714 0.389474 0.353717 0.264151 0.171053 0.318182 0.463415 0.7 0.533333 class2
0.391304 0.346154 0.569444 0.388646 0.241758 0.0566038 0.372549 0.342857 0.25 0.271429 0.284211 0.29976 0.295597 0.118421 0.136364 0.560976 0.733333 0.766667 class2
0.543478 0.461538 0.5 0.270742 0.142857 0.0943396 0.294118 0.457143 0.25 0.428571 0.284211 0.224221 0.484277 0.131579 0.590909 0.243902 0.466667 0.5 class3
|
1a6b813ebedbb63231dc5a40e328ca39168cdda1 | 99b4e2e61348ee847a78faf6eee6d345fde36028 | /Toolbox Test/peak2peak/peak2peak7.sce | dcd6d01257ffb9eb628b77d5ee1fe46691912742 | [] | no_license | deecube/fosseetesting | ce66f691121021fa2f3474497397cded9d57658c | e353f1c03b0c0ef43abf44873e5e477b6adb6c7e | refs/heads/master | 2021-01-20T11:34:43.535019 | 2016-09-27T05:12:48 | 2016-09-27T05:12:48 | 59,456,386 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 95 | sce | peak2peak7.sce | //check o/p when i/p is of type 'char'
a='character';
y=peak2peak(a);
disp(y);
//output
// 19.
|
71567c1e81b8e97a1d5ebce43be186268718c795 | 449d555969bfd7befe906877abab098c6e63a0e8 | /1076/CH3/EX3.21/3_21.sce | e71659c2f5f019d6ec17654fc1c1d80fa6e2cd2a | [] | 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,272 | sce | 3_21.sce | clear;
clc;
Vr=132e3/sqrt(3);
P=50e6;
pf=.8;
Irm=P/(3*Vr)
pfa=-1* acos(pf);
Ir=complex(Irm *pf, Irm * sin(pfa));
A=complex(.98*cosd(3), .98*sind(3));
B=complex(110*cosd(75), 110*sind(75));
Vs=(A*Vr)+(B*Ir);
V=abs(Vs)
vs=V*sqrt(3)*1e-3;
mprintf("\n\n\n(a)\nSending End Voltage= %.1f kV", vs)
phi1=atan(imag(Vs)/real(Vs))*(180/%pi);
mprintf("\nPower Angle= %.2f ",phi1)
Ss=(((vs)^2 * conj(A/B))-((sqrt(3)*Vr/1000)*(sqrt(3)*Vs/1000)/conj(B)));
Ps=real(Ss);
Qs=imag(Ss);
mprintf("\n\n\n(b)\nSending End Active Power= %.1f MW", Ps)
mprintf("\nSending End Reactive Power= %.1f MVar lagging", Qs)
Pl=Ps-(P * cos(pfa)*1e-6);
Ql=Qs-(P* -1*sin(pfa)*1e-6);
mprintf("\n\n\n(c)\nLine Loss= %.1f MW", Pl)
mprintf("\nMVar absorbed by line= %.1f MVar", Ql)
Pr=(P * cos(pfa)*1e-6);
Qr=(P * sin(pfa)*1e-6);
Vs1=140;
Vr1=132;
bd=acos(( Pr+real(((Vr1)^2 * conj(A/B))) ) * (abs(B)/(Vs1 *Vr1)));
Qr1= (((Vs1 *Vr1)/abs(B))*sin(bd))- imag(((Vr1)^2 * conj(A/B)));
Q=-Qr-Qr1;
mprintf("\n\n\n(d)\nCapacity of static capacitor= %.1f MVar", Q)
Vs2=132;
Vr2=132;
bd2=asin(( imag(((Vr2)^2 * conj(A/B))) ) * (abs(B)/(Vs2 *Vr2)));
P2= (((Vs2 *Vr2)/abs(B))*cos(bd2))- real(((Vr2)^2 * conj(A/B)));
mprintf("\n\n\n(e)\nPower supplied= %.2f MW",P2)
|
755ab0bfbd807a2bfa0e4050a552c2dc179918c2 | 5f48beee3dc825617c83ba20a7c82c544061af65 | /tests/s/99.tst | 5f0bb1ac4fa5e7c4df2d9a8c674072aee9d01729 | [] | 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 | 44 | tst | 99.tst | int main(void)
{
int a, b;
a+++ ++b;
}
|
e2b91aa8370c77ea83a4dcc9133472d7193bb00d | 449d555969bfd7befe906877abab098c6e63a0e8 | /215/CH13/EX13.4/ex13_4.sce | f342ef2e786cbedded128281782a6747e4ac9a4e | [] | 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 | 493 | sce | ex13_4.sce | clc
//Example 13.4
disp('Given')
disp('L1=0.4H L2=2.5H k=0.6 i1=4i2=20*cos(500t-20)mA')
L1=0.4;L2=2.5;k=0.6;
disp('a)')
t=0;
i2=5*cos(500*t-(20*%pi)/180)
printf("i2(0)=%3.2f mA \n",i2)
disp('b)')
M=k*sqrt(L1*L2)
//v1(t)=L1*d/dt(i1)+M*d/dt(i2)
v1=-L1*20*500*10^-3*sin(500*t-(20*%pi)/180)-M*5*500*10^-3*sin(500*t-(20*%pi)/180)
printf("v1(0)=%3.2f V \n",v1)
disp('c')
//The total energy can be found as
w=(L1*(4*i2)^2)/2+ (L2*(i2)^2)/2+M*(4*i2)*(i2)
printf("w=%3.2f uJ \n",w)
|
d683a63855d082c46dc97f546ca1da80082d1921 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3782/CH8/EX8.4/Ex8_4.sce | d812e93921e086304c785acf0260e3d0db71e83e | [] | 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 | 305 | sce | Ex8_4.sce |
//
//areas
a1=2050,a2=8400,a3=16300,a4=24600,a5=31500,
h=5
printf("\n according to trapezoidal rule')
v1=(h/2)*(a1+a5+2*(a2+a3+a4))
printf("\n volume = %0.3f meter cube",v1)
printf("\n according to prismoidal rule')
v2=(h/3)*(a1+a5+4*(a2+a4)+2*(a3))
printf("\n volume = %0.3f meter cube",v2)
|
f6eaed503fb9914e039653c491382fde0bd9d0f4 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4/Unix-Windows/scilab-2.4/macros/percent/%hm_imag.sci | f35f00f9c0e3f3e9e58fb70d31049f972e9c402d | [
"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 | 80 | sci | %hm_imag.sci | function M=%hm_imag(M)
// Copyright INRIA
M('entries')=imag(M('entries'))
|
465da7a6924d7d93f1bda73d92ed4bf60fdce34c | 449d555969bfd7befe906877abab098c6e63a0e8 | /2102/CH2/EX2.28/exa_2_28.sce | 5a7d0ceca23bfd88b79cc95bc704e2cfa5c68043 | [] | 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 | 258 | sce | exa_2_28.sce | // Exa 2.28
clc;
clear;
close;
// Given data
format('v',13)
Eg= 0.72;// in eV
Ef= Eg/2;//in eV
K= 8.61*10^-5;// in eV/K
T=300;//in K
nc= 1;
n= 1+%e^((Eg-Ef)/(K*T));
ncBYn= nc/n;
disp(ncBYn,"The fraction of the total number or electrons is : ")
|
48274568324f4cfb1a393392e3f88f1a9b400db8 | 449d555969bfd7befe906877abab098c6e63a0e8 | /226/CH12/EX12.2/example2_sce.sce | f7f97675a4b6c465b07c38eb6f7dd81917ca6d41 | [] | 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 | 285 | sce | example2_sce.sce | //chapter 12
//example 12.2
//page 477
printf("\n")
printf("given")
Vcc=24;Ve=5;Vce=3;Rl=120*10^3;Vbe=.7
Rc=Rl/10
Vrc=Vcc-Vce-Ve
Ic=Vrc/Rc
Re=Ve/Ic//use 3.9Kohm standard value to make Ic littel less than design level
Re=3.9*10^3;
R2=10*Re
I2=(Ve+Vbe)/R2
R1=(Vcc-Ve-Vbe)/I2 |
409c142b8c409af074615f6dbcf01ae9a9c9c521 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2168/CH25/EX25.15/Chapter25_example15.sce | ab70977feacf4389ede2727530e9d7cd1fea5f60 | [] | 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,037 | sce | Chapter25_example15.sce | clc
clear
//Input data
p1=1//Initial pressure in kg/cm^2
T1=15+273//Initial temperature in K
p2=5.5//Pressure after compression in kg/cm^2
T3=750+273//Temperature at the entrance of turbine in K
v=225//Speed in m/s
x=70//Percentage
in=75//Isentropic efficiency of compressor in percent
Cp=0.24//Specific heat at constant pressure in kJ/kg.K
g=1.4//Ratio of specific heats
//Calculations
T2=(T1*(p2/p1)^((g-1)/g))//Temperature in K
at=(T2-T1)/(in/100)//Actual temperature rise in the compressor in K
T2i=(T1+at)//Temperature in K
T4=(T3/(p2/p1)^((g-1)/g))//Temperature in K
to=(Cp*(T3-T4))//Theoritical turbine output in kcal/kg of air
ci=(Cp*(T2i-T1))//Actual compressor input in kcal/kg of air
ke=(v^2/(2*9.81*427))//Kinetic energy in gas leaving the exhaust annulus in kcal/kg
dT34=(ci+ke)/((x/100)*Cp)//Change in temperature in K
r=1/(1-(dT34/T3))^(g/(g-1))//Ratio of pressures
p4=(r/p2)//Pressure in kg/cm^2
//Output
printf('The pressure of the gases in the turbine exhaust annulus is %3.1f kg/cm^2',p4)
|
9e8fa5f9f85849f90ba3c4aae2b809df734e760a | 1988df91caa448a35bbf274a6d2698fe434571b1 | /tst/eval/eval.tst | 348bb38857a83dd6bd27f425cfde71e8009cb748 | [] | no_license | namin/GETFOL | bd60e9a2d9f0905c50ff5c0cff4b6bf57a2049e2 | bf42caf61799578eb82e9f17b3342bc2ee638a22 | refs/heads/master | 2021-10-25T08:08:20.142137 | 2021-10-22T16:16:40 | 2021-10-22T16:16:40 | 204,234,318 | 4 | 1 | null | 2019-08-25T02:05:54 | 2019-08-25T02:05:54 | null | UTF-8 | Scilab | false | false | 1,810 | tst | eval.tst | COMMENT | ************************************************************* |
COMMENT | * AUTHOR: Paolo Pecchiari |
COMMENT | * |
COMMENT | * SUBJECT: EVAL TEST |
COMMENT | * |
COMMENT | * GETFOL VERSION: September 1990 |
COMMENT | * |
COMMENT | ************************************************************* |
namecontext one;
declare sentconst S T R;
attach S to NIL;
attach T to T;
attach R to UNDEF&;
eval S and T;
eval not S;
eval S imp T;
eval S iff T;
eval wffif S then T else R;
eval S or T;
makecontext two;
switchcontext two;
declare sentconst S T R;
attach S to T;
attach T to T;
attach R to UNDEF&;
eval S and T;
eval not S;
eval S imp T;
eval S iff T;
eval wffif S then T else R;
eval S or T;
makecontext three;
switchcontext three;
declare sentconst S T R;
attach S to T;
attach T to NIL;
attach R to UNDEF&;
eval S and T;
eval not S;
eval S imp T;
eval S iff T;
eval wffif S then T else R;
eval S or T;
makecontext four;
switchcontext four;
declare sentconst S T R;
attach S to NIL;
attach T to NIL;
attach R to UNDEF&;
eval S and T;
eval not S;
eval S imp T;
eval S iff T;
eval wffif S then T else R;
eval S or T;
makecontext five;
switchcontext five;
declare indconst a b c;
declare predconst p q 3;
declare indvar x y;
declare indpar par;
declare predpar P 1;
declare sentpar ST;
declare funconst f 2;
declare funpar F 1;
DECREP rep1, rep2, rep3;
attach a to [rep1]a;
attach b to [rep2]b;
attach c to [rep3]c;
attach p to [rep1,rep2,rep3]p;
deflam p(x y z)T;
attach q to [rep1,rep2,rep3]q;
deflam q(x y z)NIL;
eval p(a b c);
eval q(a b c);
eval forall x y.((P(f(x y)) imp ST) and (p(F(par),b, c) and q(a b c)));
eval exists x y.((P(f(x y)) imp ST) and (p(F(par),b, c) and q(a b c)));
|
325342e9868c33f3a25a505c0a4ee094109348b0 | eccaa6b239530be7f4ccad075be54d78cb83b844 | /netbsdsrc/usr.sbin/ipf/ipsend/iplang.tst | 9a8c35e99507d1b852e7e99354e22419e612429e | [] | no_license | yangzpag/CodeReader | 5b373bf9a9b262e8df675de2b0626532be39bee3 | 757e601163cd106cc63d922ebdd77ed4297ee4a1 | refs/heads/master | 2020-04-27T23:18:39.762135 | 2019-03-09T11:13:22 | 2019-03-09T11:13:22 | 174,770,342 | 0 | 1 | null | null | null | null | UTF-8 | Scilab | false | false | 189 | tst | iplang.tst | #
interface { ifname le0; mtu 1500; }
ipv4 {
src 1.1.1.1; dst 2.2.2.2;
tcp {
seq 12345; ack 0; sport 9999; dport 23; flags S;
data { value "abcdef"; } ;
}
}
send { via 10.1.1.1; }
|
619aba5be1efb11c2c31c093f42c1a8c32d4686e | bb44d6eb6adf8f21077f2a49f2eb44d2424b2a5b | /BFS.sci | 056059ed3cc84d9206af0357a716dce4a87eb0c8 | [] | no_license | prasadovhal/Scilab-Codes | c8ccc49feba4243d092d8a1eba7a708eb95dc89e | 3af5566d62b1f1b6cf080ec20391c39b9d61897d | refs/heads/master | 2020-03-29T16:50:45.738023 | 2018-09-24T16:05:50 | 2018-09-24T16:05:50 | 150,130,310 | 1 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 686 | sci | BFS.sci | function []= bfs()
r=10
c=10
a = grand(r,c,"uin",0,1)
a(1:(r+1):(r*r)) = 0
for(i=1:r)
for(j=1:c)
a(i,j) = a(j,i)
end
end
disp(a)
vis = 0
while(vis == r)
for (j = 1:r)
a1 =a(j,(1:$))
disp(a1)
l1= find(a1==1)
disp(l1)
len = length(l1)
disp(len)
unvis = len
for (i=1:len)
nb=l1(i)
disp(nb)
i=i+1
end
vis = vis + 1
disp(vis)
unvis = unvis -1
disp(unvis)
j=j+1
end
end
endfunction
|
8e86e9633e70ece2c953c816cbbcd4d0c7e8fadc | 449d555969bfd7befe906877abab098c6e63a0e8 | /620/CH4/EX4.7/example4_7.sce | 9bb6529757b43efb2ac8fbb2171fd5a8a9f8c66c | [] | 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 | 278 | sce | example4_7.sce | disp("Part a");
v=120;
p=60;
r=18;
i=v/r;
disp("the initial inrush of current (in A) is"); disp(i);
disp("Part b");
i1=p/v;
disp("the steady operating current (in A) is"); disp(i1);
disp("Part c");
r1=v/i1;
disp("the hot resistance (in Ω) of the lamp is"); disp(r1); |
7d15dd3c8a06a3cbc41c1c1280dea607a9dd4c78 | 0ca6b89683e041d98bb8b1fa2c065fc34aeac5c9 | /PA_UTL/TEST/log.tst | fa3a78e7c9e37edeb2c9f3df090afa1c84fe3154 | [
"MIT"
] | permissive | FedericoLevis/PLSQLUtility | 3f5a4ab6436e5bedd359ad89b7358247fff215be | bdf84e1c7709603ac4a23a2b11389366cf14f335 | refs/heads/master | 2020-02-26T14:43:38.703473 | 2018-07-07T13:43:31 | 2018-07-07T13:43:31 | 63,603,679 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 598 | tst | log.tst | PL/SQL Developer Test script 3.0
18
declare
t_time1 TIMESTAMP := CURRENT_TIMESTAMP;
t_time2 TIMESTAMP := CURRENT_TIMESTAMP - 0.000123;
v_result varchar2(120);
begin
-- Call the function
/*
v_result := sgm.pa_utl.time_get_vdiff(time1 => t_time1,
time2 => t_time2);
DBMS_OUTPUT.PUT_LINE (v_result);
*/
v_result := sgm.pa_utl.time_get_vdiff(time1 => t_time1,
time2 => t_time2);
DBMS_OUTPUT.PUT_LINE (v_result);
end;
3
result
0
-5
time1
1
CURRENT_TIMESTAMP
-12
time2
1
CURRENT_TIMESTAMP
-12
0
|
6b46ff7a0164da1af4d42e844f17b6589ad34b0f | 449d555969bfd7befe906877abab098c6e63a0e8 | /2795/CH8/EX8.3/Ex8_03.sce | 275124a9d2724329a25a7240c91f7611279e12db | [] | 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 | 637 | sce | Ex8_03.sce | // Scilab Code Ex8.3: Page-285 (2014)
clc; clear;
delta_E = 2e-003; // Energy difference for the 3p subshell of sodium, eV
h = 6.62e-034; // Planck's constant, Js
e = 1.602e-019; // Energy equivalent of 1 eV, J
c = 3.00e+008; // Speed of light in vacuum, m/s
lambda = 589.3; // Wavelength of spectral line, nm
// As delta_E = h*c/lambda^2*delta_lambda, solving for delta_lambda
delta_lambda = lambda^2*e/(h*c*1e+009)*delta_E; // Splitting of 3p subshell of sodium, nm
printf("\nThe splitting of 3p subshell of sodium = %3.1f nm", delta_lambda);
// Result
// The splitting of 3p subshell of sodium = 0.6 nm |
7c155eb385f03572dba28a8847de3db52baac3e0 | 449d555969bfd7befe906877abab098c6e63a0e8 | /3537/CH1/EX1.43/Ex1_43.sce | f0d94720a1762fb8429718c0a12104af5fccd6f3 | [] | 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 | 265 | sce | Ex1_43.sce | //Example 1_43
clc();
clear;
//To find the thickness of the soap film
lemda=7000 //units in angstroam
lemda=7000*10^-8 //units in cm
u=1.33
n=2
t=(((2*n)+1)*(lemda/2))/(2*u)
printf("Thickness of the soap film is %.8f cm",t)
|
c7da1578360470f8c71cf574dcf8cad52dba1217 | 8217f7986187902617ad1bf89cb789618a90dd0a | /browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/signal/bilt.sci | d43596b064ef6e9d29ea1226e817c2aa321a63c6 | [
"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 | 2,079 | sci | bilt.sci | function [npl,nzr,ngn]=bilt(pl,zr,gn,num,den)
//[npl,nzr,ngn]=bilt(pl,zr,gn,num,den)
//macro for calculating the gain poles and zeros
//which result from a bilinear transform or from
//a biquadratic transform. Used by the macros iir
//and trans
//Note: ***This macro is not intended for general use***
// pl :input poles
// zr :input zeros
// gn :input gain
// num :numerator of transform
// den :denominator of transform
//!
//author: C. Bunks date: 5 May 1989
//Updated: 15 Sep 1997
// Copyright INRIA
n=coeff(num);
d=coeff(den);
order=maxi(size(n))-1;
ms=maxi(size(pl));ns=maxi(size(zr));
if order==1 then
n0=n(1);n1=n(2);
if prod(size(d))==1 then d=[d,0];end
d0=d(1);d1=d(2);
if zr == [] then
ngn=1/prod(n1*ones(pl)-d1*pl);
else
ngn=prod(n1*ones(zr)-d1*zr)/prod(n1*ones(pl)-d1*pl);
end
if ms<>ns then ngn=real(gn*d1**(ms-ns)*ngn);else ngn=real(gn*ngn);end
nzr=-(n0*ones(zr)-d0*zr)./(n1*ones(zr)-d1*zr);
npl=-(n0*ones(pl)-d0*pl)./(n1*ones(pl)-d1*pl);
if ms>ns then
nzr=[nzr';-(d0/d1)*ones(ms-ns,1)];
elseif ms<ns then
npl=[npl';-(d0/d1)*ones(ms-ns,1)];
end
elseif order==2 then
n0=n(1);n1=n(2);n2=n(3);
d0=d(1);d1=d(2);d2=d(3);
a=n2*ones(zr)-d2*zr;
b=n1*ones(zr)-d1*zr;
c=n0*ones(zr)-d0*zr;
gz=a;
z1=-b./(2*a)+sqrt((b./(2*a))**2-c./a);
z2=-b./(2*a)-sqrt((b./(2*a))**2-c./a);
a=n2*ones(pl)-d2*pl;
b=n1*ones(pl)-d1*pl;
c=n0*ones(pl)-d0*pl;
gp=a;
p1=-b./(2*a)+sqrt((b./(2*a))**2-c./a);
p2=-b./(2*a)-sqrt((b./(2*a))**2-c./a);
gw=d2;
w1=-d1./(2*d2)+sqrt((d1./(2*d2))**2-d0./d2);
w2=-d1./(2*d2)-sqrt((d1./(2*d2))**2-d0./d2);
ngn=gn*prod(gz)/prod(gp);
nzr=[z1,z2];
npl=[p1,p2];
if ms>ns then
nzr=[nzr';-(d0/d1)*ones(ms-ns,1)];
elseif ms<ns then
npl=[npl';-(d0/d1)*ones(ms-ns,1)];
end
ngn=real(ngn*(gw**(ms-ns)));
else
error('error bilt --- wrong order transform')
end
|
d80c0255b86acfab551a20682eeadd7ea072eb51 | 8b2aadfe2dd241d882213436738542d3f65f4e17 | /ModuleTonalitéSynthèse/Module Synthèse/Scilab/trompette.sci | f0c2bb2092d0d32b01679f9f32f92669e5664151 | [] | no_license | ahmed-bensaad/FMTM | c764c3162ac6f24f7caa2d0fd99725d4c458efc6 | 66fd7a477e3addb5a0c3a4d7489daa09fb9c5042 | refs/heads/master | 2021-09-02T11:04:05.660173 | 2017-02-06T21:54:09 | 2017-02-06T21:54:09 | 115,977,485 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 876 | sci | trompette.sci | function [s]= trompette(fp,fm,Fe,d,m0) // fp -> hauteur, d-> durée, m0-> amplitude du sinus modulant
Te=1/Fe; // temps echantillonage
x=[0:Te:d]; //axe temps
m=[0:Te:d]; // amplitude constante au cours du temps
n=length(m);
for i=1:n
m(i)= m0;
end
f=[0:Te:d]; // frequence de l'oscillateur FM constante au cours du temps
for i=1:n
f(i)= fm;
end
x1 = oscFM(f,m,Fe,d);
for i=1:n
x1(i)= x1(i)+fp;
end
m2=[0:Te:d]; // amplitude constante au cours du temps de s
n=length(m2);
for i=1:n
m2(i)= 1;
end
s=oscFM(x1,m2,Fe,d);
for i=1:n
s(i)=s(i)*enveloppe_ADSR(x(i));
end
B=0;
//s=cuivrage(s,B,1/Fe);
//plot(s);
//sound(s,Fe);
// amelioration possible => Jitter, cuivrage, shéma plus complexe de l'instrument à vent
endfunction
|
baaabc86526273b720eac25ceaf6f845033ced29 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2333/CH3/EX3.33/33.sce | 1a76dfc1cd6265a3d88bf7dbe45be61aa495e0be | [] | 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 | 502 | sce | 33.sce | clc
// Given that
f = 4 // Focal length of telescope objective in m
d = 100 // Diameter of lens of telescope in inch
lambda = 5000 // mean wavelength of light in angstrom
// Sample Problem 33 on page no. 175
printf("\n # PROBLEM 33 # \n")
printf(" Standard formula used \n")
printf(" theta = 1.22*lambda/a \n")
a = d*2.54/100 // Diameter of lens of telescope in meter
theta = 1.22*lambda*1e-10/a // Calculation of angle
printf("\n Smallest angle between two stars is %e rad.",theta)
|
746df26d2298292fe8ddbf929118b109d365b78e | 1db0a7f58e484c067efa384b541cecee64d190ab | /macros/db.sci | 7b5f043522ddbc57c11c61c7a8ce646e1c7d33de | [] | 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 | 5,266 | sci | db.sci | function [dboutput] = db(X, SignalType, R)
//dboutput = db(X) converts the elements of the vector or matrix X to decibels (dB). The elements of X are voltage measurements across a resistance of 1 ohm.
//dboutput = db(X,SignalType) specifies the signal type represented by the elements of X as 'voltage' or 'power'. The entries are not case sensitive. The default value is 'voltage'. For voltage measurements, the resistance defaults to 1 ohm. If you specify SignalType as 'power', the elements of X must be nonnegative.
//dboutput = db(X,R) specifies the resistance R for voltage measurements. You can specify a resistance only when the signal measurements are voltages.
//dboutput = db(X,'voltage',R) specifies the resistance R for voltage measurements. This syntax is equivalent to db(X,R).
//X - Signal measurements. X must be a vector or matrix. If the elements of X are power measurements, all elements must be nonnegative.
//SignalType - Type of signal measurements. Valid entries for SignalType are 'voltage' or 'power'. The entries are not case sensitive. If you specify SignalType as 'power', the elements of X must be nonnegative.
//Default: 'voltage'
//R - Resistive load in ohms. You can specify resistance only when the SignalType is 'voltage'.
//Default: 1
//Author : Pratik Kapoor
//Modified to remove disp(SignalType) at line 28
//Modified to handle imaginary, negative power, and zero input
//Modifications by Debdeep Dey
funcprot(0);
[lhs, rhs] = argn(0)
[nr, nc] = size(X);
dboutput = zeros(nr, nc);
//disp(SignalType);
if rhs == 1 then
R = 1;
for i = 1: nr
for j = 1: nc
//handle zero i/p
if (type(X(i, j)))==10 then
dboutput(i, j) = 10 * log10((ascii(X(i, j)) * ascii(X(i, j))) / R);
elseif abs(X(i,j))>0 then
dboutput(i, j) = 10 * log10((abs(X(i, j)) * abs(X(i, j))) / R);
else
dboutput(i, j) = -%inf;
end
end
end
elseif rhs == 2 then
if (SignalType == 'voltage' | SignalType == 'Voltage' | SignalType == 'VOLTAGE') then
R = 1;
for i = 1: nr
for j = 1: nc
if (type(X(i, j)))==10 then
dboutput(i, j) = 10 * log10((ascii(X(i, j)) * ascii(X(i, j))) / R);
elseif abs(X(i,j))>0 then
dboutput(i, j) = 10 * log10((abs(X(i, j)) * abs(X(i, j))) / R);
else
dboutput(i, j) = -%inf;
end
end
end
elseif(SignalType == 'power' | SignalType == 'Power' | SignalType == 'POWER') then[i, j] = size(X);
R = 1;
for i = 1: nr
for j = 1: nc
if (type(X(i, j)))==10 then
dboutput(i, j) = 10 * log10((ascii(X(i, j)) * ascii(X(i, j))) / R);
elseif (X(i, j)) > 0 then
dboutput(i, j) = 10 * log10(X(i, j));
elseif(X(i,j)==0) then
dboutput(i,j)=-%inf;
else //function should not accept negative values for power
error("Power cannot be negative")
end
end
end
elseif(type(SignalType == 1))
R = SignalType;
for i = 1: nr
for j = 1: nc
if (type(X(i, j)))==10 then
dboutput(i, j) = 10 * log10((ascii(X(i, j)) * ascii(X(i, j))) / R);
elseif abs(X(i,j))>0 then
dboutput(i, j) = 10 * log10((abs(X(i, j)) * abs(X(i, j))) / R);
else
dboutput(i,j)=-%inf;
end
end
end
end
elseif rhs == 3 then
if (type(SignalType) == 1) then
error('Incorrect argument. Argument 2 specifies the signal type represented by elements of X');
elseif(SignalType == 'voltage' | SignalType == 'Voltage' | SignalType == 'VOLTAGE') then
for i = 1: nr
for j = 1: nc
if (type(X(i, j)))==10 then
dboutput(i, j) = 10 * log10((ascii(X(i, j)) * ascii(X(i, j))) / R);
elseif abs(X(i,j))>0 then
dboutput(i, j) = 10 * log10((abs(X(i, j)) * abs(X(i, j))) / R);
else
dboutput(i,j)=-%inf;
end
end
end
elseif(SignalType == 'power' | SignalType == 'Power' | SignalType == 'POWER') then
for i = 1: nr
for j = 1: nc
if (type(X(i, j)))==10 then
dboutput(i, j) = 10 * log10((ascii(X(i, j)) * ascii(X(i, j))) / R);
elseif (X(i, j)) > 0 then
dboutput(i, j) = 10 * log10(X(i, j));
elseif(X(i,j)==0) then
dboutput(i,j)=-%inf;
else
error("Power cannot be negative");
end
end
end
end
end
endfunction
|
dabca39b32b461819bb724061ba25547489d11c4 | aaebbe73cc851ba9ed8a3493abedb739d122533a | /code/resource/scene/xuexiao/xx_zl_3.sce | 932f5dce904cf7e7e2c9d490f2ff3c87be2d74b1 | [] | no_license | coeux/lingyu-meisha-jp | 7bc1309bf8304a294f9a42d23b985879a28afbc0 | 11972819254b8567cda33d17ffc40b384019a936 | refs/heads/master | 2021-01-21T13:48:12.593930 | 2017-02-14T06:46:02 | 2017-02-14T06:46:02 | 81,812,311 | 1 | 2 | null | null | null | null | UTF-8 | Scilab | false | false | 750 | sce | xx_zl_3.sce | <?xml version="1.0" encoding="utf-8" ?>
<Scene>
<Sprite Translate="X:-853.000000 Y:0.000000 Z:0.000000" Scale="X:1.000000 Y:1.000000 Z:1.000000" FileName="bg01.jpg" ImageArea="L:0.000000 T:0.000000 R:853.000000 B:480.000000" ZOrder="-10000" Opacity="1.00" MoveSpeed="0.00" />
<Sprite Translate="X:-0.500000 Y:0.000000 Z:0.000000" Scale="X:1.000000 Y:1.000000 Z:1.000000" FileName="bg01.jpg" ImageArea="L:0.000000 T:0.000000 R:853.000000 B:480.000000" ZOrder="-10000" Opacity="1.00" MoveSpeed="0.00" />
<Sprite Translate="X:852.000000 Y:0.000000 Z:0.000000" Scale="X:1.000000 Y:1.000000 Z:1.000000" FileName="bg01.jpg" ImageArea="L:0.000000 T:0.000000 R:853.000000 B:480.000000" ZOrder="-10000" Opacity="1.00" MoveSpeed="0.00" />
</Scene>
|
7d5d9de500f3a6fff27687541af483f63c3a0e4d | 449d555969bfd7befe906877abab098c6e63a0e8 | /770/CH3/EX3.18/3_18.sce | ff32b619bdeefbcace3f0156716d91d86e693177 | [] | 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,835 | sce | 3_18.sce | clear;
clc;
//Example - 3.18
//Page number - 112
printf("Example - 3.18 and Page number - 112\n\n");
//Given
T_1 = 300;//[K] - Temperature at entry
P_1 = 100;//[kPa] - Pressure at entry
P_2 = 900;//[kPa] - Pressure at exit
R = 8.314;//[J/mol*K] - Universal gas constant
// (a)
// Reversible adiabatic compression
Y = 1.4;//Ratio of specific heat capacities
// For ideal gas, P*V^(Y)= constant and it takes the form of (T_2/T_1) = (P_2/P_1)^((Y-1)/Y)
T_2 = T_1*(P_2/P_1)^((Y - 1)/Y);//[K]
// The work exchange for adiabatic process is given by
// W_adia = -delta_H = -Cp*(T2-T1) = Cp*(T1-T2) = ((Y*R)/(Y-1))*(T1-T2)
W_adia = ((Y*R)/(Y - 1))*(T_1 - T_2);//[J/mol] -work done
// Molecular weight of air(21 vol% O2 and 79 vol% N2)=(0.21*32)+(0.79*28)= 28.84 g/mol
Mol_wt = 28.84;//[g/mol]
W_adia = W_adia/Mol_wt;//[J/g]
printf(" (a).The compressor work done for reversible adiabatic compession is %f J/g\n",W_adia);
//(b)
//Isothermal compression
//W_iso = -integral(V*dP) = -integral((R*T/P)*dP) = R*T*ln(P_2/P_1)
W_iso = -R*T_1*log(P_2/P_1);//[J/mol]
W_iso = W_iso/Mol_wt;//[J/g]
printf(" (b).The compressor work done for isothermal compession is %f J/g\n",W_iso);
//Note that in isothermal compression between the same states work done is less as compared to reversible adiabatic compression.
//(c)
//Ideal two-stage compression
n = 1.3;//Polytropic exponent.
//Minimum work done in two stage compression is given by
//W_comp = ((2*n*R*T_1)/(n-1))*[1-(P_x/P_1)^(n-1)/n]
//where for minimum work, (P_x/P_1) = (P_x/P_2), and thus
P_x = (P_1*P_2)^(1/2);//[kPa]
//therefore, work done is given by,
W_comp = ((2*n*R*T_1)/(n-1))*[1-(P_x/P_1)^((n-1)/n)];//[J/mol]
W_comp = W_comp/Mol_wt;//[J/g]
printf(" (c).The compressor work done for ideal two-stage compession is %f J/g\n",W_comp);
|
d1dbe8077330ec3a01cad8726fe21a5f0ea7d433 | 449d555969bfd7befe906877abab098c6e63a0e8 | /413/CH3/EX3.1/Example_3_1.sce | 6b6b409ab07a4801cf6dfa4c5b744b6112e7a6d2 | [] | 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 | 786 | sce | Example_3_1.sce | clc
clear
x=[3.2 2.7 1 4.8 5.6]
y=[22 17.8 14.2 38.3 51.7]
for i=1:1:5
X=[x(1,i) y(1,i)]
disp(X)
end
P31=(3-x(1,2))*(3-x(1,3))*(3-x(1,4))*(3-x(1,5))*y(1,1)/((x(1,1)-x(1,2))*(x(1,1)-x(1,3))*(x(1,1)-x(1,4))*(x(1,1)-x(1,5)));
P32=(3-x(1,1))*(3-x(1,3))*(3-x(1,4))*(3-x(1,5))*y(1,2)/((x(1,2)-x(1,1))*(x(1,2)-x(1,3))*(x(1,2)-x(1,4))*(x(1,2)-x(1,5)))
P33=(3-x(1,2))*(3-x(1,1))*(3-x(1,4))*(3-x(1,5))*y(1,3)/((x(1,3)-x(1,2))*(x(1,3)-x(1,1))*(x(1,3)-x(1,4))*(x(1,3)-x(1,5)))
P34=(3-x(1,2))*(3-x(1,3))*(3-x(1,1))*(3-x(1,5))*y(1,4)/((x(1,4)-x(1,2))*(x(1,4)-x(1,3))*(x(1,4)-x(1,1))*(x(1,4)-x(1,5)))
P35=(3-x(1,2))*(3-x(1,3))*(3-x(1,4))*(3-x(1,1))*y(1,5)/((x(1,5)-x(1,2))*(x(1,5)-x(1,3))*(x(1,5)-x(1,4))*(x(1,5)-x(1,1)))
printf(' Ploynomial at x=3 is')
P=P31+P32+P33+P34+P35
disp(P) |
146bcfa6f2394325053a79d9705098d63510537b | 449d555969bfd7befe906877abab098c6e63a0e8 | /2231/CH1/EX1.35/Ex_1_35.sce | c5c7488f3685e58d0230c5cd0a9984a6e7cbf5fd | [] | 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 | 352 | sce | Ex_1_35.sce | //Example 1_35
clc;
clear;close;
//Given data:
Vdc=100;//V
L=0.1*10^-3;//H
C=10*10^-6;//F
Vc=100;//V
t_off_thyristor=25*10^-6;//s
IL=10;//A
t_off=Vc*C/IL;//s
disp("T_off is "+string(t_off)+" seconds. It is greater than thristor turn off time, so it is sufficient for communication.")
Ip=Vdc*sqrt(C/L);//A
disp(Ip,"Current rating(A)");
|
7bba8886753229da875ce73677740d15f1e12ead | 449d555969bfd7befe906877abab098c6e63a0e8 | /50/CH2/EX2.8/ex_8.sce | 44ac39cef6082f3ab47fcfd8d051c8f7350491fe | [] | 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,084 | sce | ex_8.sce | // The equation x^3-17==0 has three real roots.
// the graph of this function can be observed here.
xset('window',7);
x=-5:.001:5; // defining the range of x.
deff('[y]=f(x)','y=x^3-17'); //defining the cunction.
deff('[y]=fp(x)','y=3*x^2');
y=feval(x,f);
a=gca();
a.y_location = "origin";
a.x_location = "origin";
plot(x,y) // instruction to plot the graph
title(' y = x^3-17')
// from the above plot we can infre that the function has root between
// the interval (2,3).
//solution by newton raphson's method
// since in example no.2.8 we have been asked to perform 4 iterations ,we define a fuction newton4'' which does newton raphson's method of finding approximate root upto 4 iterations,
newton4(2,f,fp) //calling the pre-defined function 'newton4'.
|
8e85e42d363076ea01c6d126cabb9b3236c65006 | 449d555969bfd7befe906877abab098c6e63a0e8 | /2510/CH13/EX13.9/Ex13_9.sce | e055b2e3087112d2824330522c596c7e3e7fd5d5 | [] | 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 | 371 | sce | Ex13_9.sce | //Variable declaration:
h_out = 390.0 //Enthalpy of the fluid that exits from the evaporator (kJ/kg)
h_in = 230.0 //Enthalpy of the fluid that enters the unit (kJ/kg)
//Calculation:
QC = h_out - h_in //Heat absorbed by the evaporator (kJ/kg)
//Result:
printf("The heat absorbed by the evaporator is : %.0f kJ/kg.",QC)
|
bafc4e9173785e87c8d3a6a0ab6bf07768affced | 449d555969bfd7befe906877abab098c6e63a0e8 | /992/CH2/EX2.18/ex2_18.sce | 910cb3071e1d2b29a8c4573631c97d4400526b54 | [] | 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 | 251 | sce | ex2_18.sce |
//Exa:2.18
clc;
clear;
close;
//Given:
Pt=100;//in Watts
m=0.25;//depth
Pmax=100//maximum power transmission capable
Pc=Pt/(1+(m^2)/2);
printf("\n\n\t carrier power = %f W ",Pc);
printf("\n\n\t sidebands have the remaining %f W ",Pmax-Pc); |
448792f5b6dbb768ff4fceaa384df3b7112904eb | 449d555969bfd7befe906877abab098c6e63a0e8 | /162/CH4/EX4.18/example418.sce | 48956834ac58e7d5e4c5618cfa0dfa00ac0d7bb1 | [] | 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 | example418.sce | //Example 4.18
clc;
syms s;
I=(2*s+3)/((s+1)*(s+3));
i=ilaplace(I);
io=limit(i,t,0);
disp(io,'INITIAL VALUE OF i(t)'); |
bc51918404050ae8c4b84fdde66aa955260a0d9a | a3f5b45d29e397db1fc6800b4336dd9f85e4e07d | /projects/software_stack/vm/MemoryAccess/PushNTest/PushNTest.tst | 172c17c351f3f55280de44d9b9f1562a4bbf4059 | [] | no_license | idrisr/nand2tetris | 1f5e4ac469489f415e70ee626fa592a9e5730d78 | b491e96ce9fc54cccf8aea07214c95cb4ffaa4f5 | refs/heads/master | 2016-09-06T03:17:26.716980 | 2015-01-03T01:59:22 | 2015-01-03T01:59:22 | 27,518,528 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 583 | tst | PushNTest.tst | // This file is part of www.nand2tetris.org
// and the book "The Elements of Computing Systems"
// by Nisan and Schocken, MIT Press.
// File name: projects/07/MemoryAccess/PushNTest/PushNTest.tst
load PushNTest.asm,
// load PushNTestManual.asm,
output-file PushNTest.out,
compare-to PushNTest.cmp,
// SP LCL @SP-1 @LCL-1
output-list
RAM[0]%D1.6.1
RAM[256]%D1.6.1
RAM[257]%D1.6.1;
set RAM[0] 256, // SP
set RAM[1] 300, // LCL
// set RAM[2] 400, // ARG
// set RAM[3] 3000,// THIS
// set RAM[4] 3010,// THAT
repeat 50 {
ticktock;
}
output;
|
e49676287bed683d9b4e5c4ae8b8ddb5888d48c4 | 449d555969bfd7befe906877abab098c6e63a0e8 | /40/CH2/EX2.3a/Exa_2_3a.sce | 1cf640075dd34e7ea23fe62916655ce53109a7c5 | [] | 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 | 529 | sce | Exa_2_3a.sce | //example 2.3a pg.no.14
clear;clc;close;
n=-2:2;
x1=[4 -2 4 -6 0];
x2=0.5*x1//x[n]
x3=0.5*[x1(length(x1):-1:1)];//x[-n]
xe=(x2+x3);//even part
xo=(x2-x3);//odd part
a=gca();
a.thickness=2;
a.x_location="middle";
a.y_location="middle";
plot2d3('gnn',n,xe,rect=[-4 -6 4 6])
xtitle('graphical representation of even part of x[n]','n','x[n]')
xset('window',1)
b=gca();
b.thickness=2;
b.y_location="middle";
b.x_location="middle";
plot2d3('gnn',n,xo,rect=[-2 -4 2 4])
xtitle('graphical representation of odd part of x[n]','n','x[n]')
|
ffe1719ad58f1dda961d0a8744ec03ce44b66d52 | 6e257f133dd8984b578f3c9fd3f269eabc0750be | /ScilabFromTheoryToPractice/Computing/testarrondis.sce | 9beaf7e8449040b89e86f2a05e4206665eb389f8 | [] | no_license | markusmorawitz77/Scilab | 902ef1b9f356dd38ea2dbadc892fe50d32b44bd0 | 7c98963a7d80915f66a3231a2235010e879049aa | refs/heads/master | 2021-01-19T23:53:52.068010 | 2017-04-22T12:39:21 | 2017-04-22T12:39:21 | 89,051,705 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 369 | sce | testarrondis.sce | floor(1.3),ceil(1.3),round(1.3),int(1.3)
floor(-1.3),ceil(-1.3),round(-1.3),int(-1.3)
floor(1.6),ceil(1.6),round(1.6),int(1.6)
floor(-1.6),ceil(-1.6),round(-1.6),int(-1.6)
// compute the quotient of a euclidean division by rounding
floor(10/6) // quotient
10-6*floor(10/6) // remainder
pmodulo(10,6) // remainder
(10-pmodulo(10,6))/6 // quotient
|
3e3d5f24447791eb4eca04fd9bca78c1b6c0de3d | 449d555969bfd7befe906877abab098c6e63a0e8 | /964/CH1/EX1.2/1_2.sce | 075a15630dd09f6e54bdd25a66b6b2b42daadd80 | [] | 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 | 321 | sce | 1_2.sce | clc;
clear;
g=9.8;//m/s^2; acceleration due to gravity
m=68.1;//kg
c=12.5;//kg/sec; drag coefficient
count=2;
v(1)=0;
disp(v(1),"v(m/s)=",0,"Time(s)=")
for i=2:2:12
v(count)=v(count-1)+(g-c*v(count-1)/m)*(2);
disp(v(count),"v(m/s)=",i,"Time(s)=")
count=count+1;
end
disp(g*m/c,"v(m/s)=","infinity","Time(s)=") |
4eeb31f19168ed59b0b20cb157240eda15b4ba32 | 449d555969bfd7befe906877abab098c6e63a0e8 | /69/CH2/EX2.22/2_22.sce | 3a35c0be282d74eae2d285f17738c972026a8dcb | [] | 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 | 998 | sce | 2_22.sce | clear; clc; close;
f = 1000;
T = 1/f;
C = 0.1*10^(-6);
R = 100*10^(3);
//between t1-->t2
vo_1 = 5;
Vc = 25;
//between t2-->t3
Rth = 0;
Eth = 5;
vo_2 =35;
tau = R*C;
discharge_time = 5*tau;
//between t3-->t4
vo_3 = 5;
disp(vo_1,'output voltage during t1-->t2 : ');
disp(vo_2,'output voltage during t2-->t3 : ');
disp(vo_3,'output voltage during t3-->t4 : ');
t = 0:10^(-6):2.5*10^(-3);
for i= 1:length(t)
if(t(i)>=0 & t(i)<=0.5*10^(-3))
y(i) = 0;
elseif(t(i)>=0.5*10^(-3) & t(i)<=10^(-3))
y(i) = 5;
elseif(t(i)>=10^(-3) & t(i)<=1.5*10^(-3))
y(i)=35;
elseif(t(i)>=1.5*10^(-3) & t(i)<=2.0*10^(-3))
y(i)=5;
elseif(t(i)>=2.0*10^(-3) & t(i)<=2.5*10^(-3))
y(i)=35;
end
end
a = gca();
a.thickness = 2;
plot2d(t,y);
a.x_label.text = 't';
a.y_label.text = 'Vo';
xset('thickness',2);
xstring(0.5*10^(-3),0,'t1');
xstring(10^(-3),0,'t2');
xstring(1.5*10^(-3),0,'t3');
xstring(2*10^(-3),0,'t4'); |
eccd93489e1556169378579114055629addb0fa3 | d7add921d951d502b6b43dfb2541ce6e27f2a2f9 | /time_frequency_tool_test.sce | 3eed5c6ccff09dfbcd162ad1dc0883c76b99e598 | [] | no_license | YugoOsano/dataanalysis | a6bff1ed918b04922de3278ecc808efa44b7e5ac | ba8f3309c970fe0dda21ca295fdfbf04a3d97c1b | refs/heads/master | 2020-04-05T23:29:58.158349 | 2014-01-18T01:54:44 | 2014-01-18T01:54:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 1,306 | sce | time_frequency_tool_test.sce | //-- To change the default directory,
// create scilab.ini file at C:\Users\USER\Documents
// with a statement such as:
// chdir "C:\yugo\statistics"
//-- To execute a script file like this, type:
// exec("time_frequency_tool_test.sce")
// in console or press Ctrl+L on Scinotes
//--- To make the graph window clear, type:
// clf
clf
// Time-Frequency toolbox manual was downloaded from:
// http://atoms.scilab.org/toolboxes/stftb/1.2.3/files/tutorial.pdf
//-- fmlin(number of points, initial normalized frequency, final normalized frequency)
sig1 = fmlin(128, 0, 0.5);
// Element-by-element multiplicative operations are obtained using .* , .^ , ./ , .\ or .'.
// http://help.scilab.org/docs/5.3.0/en_US/dot.html
// fftshift; Shift zero-frequency component of discrete Fourier transform to center of spectrum
dsp1 = fftshift(abs(fft(sig1)).^2);
//-- Here dsp1 is a simple array of 128 components --
// plot((-64:63)/128, dsp1); //-- first argument is an array for x coordinate
//-- get Wigner-Ville distribution of the chirp as a 2d array
wvsig = tfrwv( sig1);
//-- prepare arrays for time and frequency
tary = 0:127;
tmp = linspace( 0, 0.5, 129);
fary = tmp(1:128);
// customizing 3d plot in Scilab is still being learned
//plot3d( tary, fary, wvsig);
tfrwv( sig1, 'plot' ) ;
|
b55546cacf6b4ef98fa82d7c47be7f7a8ebde3d8 | f542bc49c4d04b47d19c88e7c89d5db60922e34e | /PresentationFiles_Subjects - Kopie/CONT/XG57FZY/ATWM1_Working_Memory_MEG_XG57FZY_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce | 1d1fe5c4b1c07dd2364f3fbf7c0d5b5b6cd35986 | [] | 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,600 | sce | ATWM1_Working_Memory_MEG_Nonsalient_Cued_Run1.sce | # ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1";
#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 1792 2992 2592 fixation_cross gabor_003 gabor_161 gabor_089 gabor_042 gabor_003_alt gabor_161 gabor_089 gabor_042_alt "1_1_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2600_gabor_patch_orientation_003_161_089_042_target_position_2_3_retrieval_position_2" gabor_circ gabor_161_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_1_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_161_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 1942 2992 2142 fixation_cross gabor_062 gabor_091 gabor_151 gabor_033 gabor_062_alt gabor_091_alt gabor_151 gabor_033 "1_2_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_062_091_151_033_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_172_framed blank blank blank blank fixation_cross_target_position_3_4 "1_2_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_172_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 2342 fixation_cross gabor_003 gabor_175 gabor_065 gabor_087 gabor_003 gabor_175_alt gabor_065_alt gabor_087 "1_3_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2350_gabor_patch_orientation_003_175_065_087_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_087_framed blank blank blank blank fixation_cross_target_position_1_4 "1_3_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_087_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 1742 2992 2142 fixation_cross gabor_159 gabor_018 gabor_179 gabor_098 gabor_159_alt gabor_018_alt gabor_179 gabor_098 "1_4_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_159_018_179_098_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_179_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_4_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_179_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 1992 fixation_cross gabor_143 gabor_003 gabor_109 gabor_126 gabor_143_alt gabor_003_alt gabor_109 gabor_126 "1_5_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2000_gabor_patch_orientation_143_003_109_126_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_109_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_5_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2242 2992 2092 fixation_cross gabor_134 gabor_167 gabor_048 gabor_102 gabor_134 gabor_167_alt gabor_048 gabor_102_alt "1_6_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2100_gabor_patch_orientation_134_167_048_102_target_position_1_3_retrieval_position_2" gabor_circ gabor_118_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_6_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_118_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 2292 fixation_cross gabor_134 gabor_028 gabor_001 gabor_091 gabor_134_alt gabor_028_alt gabor_001 gabor_091 "1_7_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_134_028_001_091_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_046_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_7_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_046_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 2242 2992 1942 fixation_cross gabor_059 gabor_079 gabor_033 gabor_165 gabor_059 gabor_079_alt gabor_033_alt gabor_165 "1_8_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_059_079_033_165_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_165_framed blank blank blank blank fixation_cross_target_position_1_4 "1_8_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_165_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 1742 2992 2092 fixation_cross gabor_074 gabor_097 gabor_008 gabor_131 gabor_074 gabor_097_alt gabor_008 gabor_131_alt "1_9_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_074_097_008_131_target_position_1_3_retrieval_position_1" gabor_074_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_9_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_074_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 2092 2992 2342 fixation_cross gabor_170 gabor_046 gabor_063 gabor_010 gabor_170 gabor_046 gabor_063_alt gabor_010_alt "1_10_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_170_046_063_010_target_position_1_2_retrieval_position_1" gabor_170_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_10_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1792 2992 2192 fixation_cross gabor_110 gabor_150 gabor_040 gabor_089 gabor_110_alt gabor_150 gabor_040_alt gabor_089 "1_11_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2200_gabor_patch_orientation_110_150_040_089_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_040_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_11_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_040_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 2092 2992 2192 fixation_cross gabor_146 gabor_034 gabor_095 gabor_056 gabor_146_alt gabor_034 gabor_095 gabor_056_alt "1_12_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_146_034_095_056_target_position_2_3_retrieval_position_2" gabor_circ gabor_034_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_12_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_034_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 1842 2992 2542 fixation_cross gabor_090 gabor_063 gabor_174 gabor_143 gabor_090_alt gabor_063 gabor_174_alt gabor_143 "1_13_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2550_gabor_patch_orientation_090_063_174_143_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_003_framed blank blank blank blank fixation_cross_target_position_2_4 "1_13_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_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 1842 2992 2242 fixation_cross gabor_088 gabor_016 gabor_148 gabor_178 gabor_088 gabor_016_alt gabor_148 gabor_178_alt "1_14_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_088_016_148_178_target_position_1_3_retrieval_position_1" gabor_088_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_14_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_088_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 1742 2992 2042 fixation_cross gabor_094 gabor_008 gabor_070 gabor_113 gabor_094 gabor_008 gabor_070_alt gabor_113_alt "1_15_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_094_008_070_113_target_position_1_2_retrieval_position_1" gabor_094_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_15_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_094_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 2192 2992 2442 fixation_cross gabor_066 gabor_092 gabor_146 gabor_024 gabor_066_alt gabor_092 gabor_146_alt gabor_024 "1_16_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2450_gabor_patch_orientation_066_092_146_024_target_position_2_4_retrieval_position_1" gabor_066_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_16_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_066_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 1942 2992 1942 fixation_cross gabor_163 gabor_123 gabor_013 gabor_047 gabor_163_alt gabor_123 gabor_013_alt gabor_047 "1_17_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_163_123_013_047_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_target_position_2_4 "1_17_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_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 2242 2992 2592 fixation_cross gabor_135 gabor_179 gabor_155 gabor_028 gabor_135 gabor_179_alt gabor_155 gabor_028_alt "1_18_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_135_179_155_028_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_105_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_18_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_105_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 1892 2992 1942 fixation_cross gabor_068 gabor_013 gabor_174 gabor_047 gabor_068 gabor_013 gabor_174_alt gabor_047_alt "1_19_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_1950_gabor_patch_orientation_068_013_174_047_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_094_framed blank blank blank blank fixation_cross_target_position_1_2 "1_19_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_094_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 1942 fixation_cross gabor_133 gabor_111 gabor_087 gabor_028 gabor_133_alt gabor_111_alt gabor_087 gabor_028 "1_20_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_133_111_087_028_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_163_framed blank blank blank blank fixation_cross_target_position_3_4 "1_20_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_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 2042 2992 1992 fixation_cross gabor_137 gabor_163 gabor_007 gabor_074 gabor_137_alt gabor_163 gabor_007_alt gabor_074 "1_21_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_137_163_007_074_target_position_2_4_retrieval_position_2" gabor_circ gabor_117_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_21_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_117_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 2242 2992 2292 fixation_cross gabor_058 gabor_118 gabor_140 gabor_035 gabor_058 gabor_118 gabor_140_alt gabor_035_alt "1_22_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_058_118_140_035_target_position_1_2_retrieval_position_1" gabor_010_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_22_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_010_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 2192 fixation_cross gabor_067 gabor_027 gabor_134 gabor_152 gabor_067 gabor_027_alt gabor_134_alt gabor_152 "1_23_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2200_gabor_patch_orientation_067_027_134_152_target_position_1_4_retrieval_position_1" gabor_067_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_23_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_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 2392 fixation_cross gabor_175 gabor_057 gabor_032 gabor_141 gabor_175_alt gabor_057 gabor_032_alt gabor_141 "1_24_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2400_gabor_patch_orientation_175_057_032_141_target_position_2_4_retrieval_position_2" gabor_circ gabor_057_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_24_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 1992 2992 2342 fixation_cross gabor_124 gabor_177 gabor_067 gabor_147 gabor_124_alt gabor_177_alt gabor_067 gabor_147 "1_25_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2350_gabor_patch_orientation_124_177_067_147_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_067_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_25_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_067_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 2092 2992 2592 fixation_cross gabor_171 gabor_058 gabor_089 gabor_013 gabor_171 gabor_058_alt gabor_089 gabor_013_alt "1_26_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2600_gabor_patch_orientation_171_058_089_013_target_position_1_3_retrieval_position_1" gabor_034_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_26_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_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 1842 2992 1992 fixation_cross gabor_043 gabor_064 gabor_180 gabor_022 gabor_043_alt gabor_064 gabor_180_alt gabor_022 "1_27_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_043_064_180_022_target_position_2_4_retrieval_position_2" gabor_circ gabor_111_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_27_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 2142 2992 2292 fixation_cross gabor_080 gabor_016 gabor_064 gabor_146 gabor_080 gabor_016_alt gabor_064 gabor_146_alt "1_28_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2300_gabor_patch_orientation_080_016_064_146_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_146_framed blank blank blank blank fixation_cross_target_position_1_3 "1_28_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_146_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 1892 fixation_cross gabor_113 gabor_008 gabor_150 gabor_042 gabor_113_alt gabor_008 gabor_150_alt gabor_042 "1_29_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1900_gabor_patch_orientation_113_008_150_042_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_091_framed blank blank blank blank fixation_cross_target_position_2_4 "1_29_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_091_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 2242 fixation_cross gabor_177 gabor_149 gabor_065 gabor_132 gabor_177_alt gabor_149 gabor_065 gabor_132_alt "1_30_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_177_149_065_132_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_019_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_30_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_019_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 2042 fixation_cross gabor_059 gabor_025 gabor_133 gabor_089 gabor_059 gabor_025 gabor_133_alt gabor_089_alt "1_31_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_059_025_133_089_target_position_1_2_retrieval_position_1" gabor_059_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_31_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_059_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 2042 2992 2142 fixation_cross gabor_071 gabor_055 gabor_180 gabor_026 gabor_071 gabor_055 gabor_180_alt gabor_026_alt "1_32_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_071_055_180_026_target_position_1_2_retrieval_position_1" gabor_071_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_32_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1892 2992 2092 fixation_cross gabor_055 gabor_164 gabor_083 gabor_111 gabor_055_alt gabor_164_alt gabor_083 gabor_111 "1_33_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2100_gabor_patch_orientation_055_164_083_111_target_position_3_4_retrieval_position_1" gabor_055_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_33_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_055_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 2192 2992 2392 fixation_cross gabor_017 gabor_167 gabor_148 gabor_040 gabor_017 gabor_167_alt gabor_148 gabor_040_alt "1_34_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_017_167_148_040_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_148_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_34_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_148_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 1792 2992 2292 fixation_cross gabor_115 gabor_098 gabor_028 gabor_144 gabor_115_alt gabor_098 gabor_028 gabor_144_alt "1_35_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_115_098_028_144_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_075_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_35_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_075_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 1792 2992 2192 fixation_cross gabor_128 gabor_067 gabor_019 gabor_096 gabor_128_alt gabor_067 gabor_019_alt gabor_096 "1_36_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2200_gabor_patch_orientation_128_067_019_096_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_096_framed blank blank blank blank fixation_cross_target_position_2_4 "1_36_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1892 2992 2442 fixation_cross gabor_096 gabor_010 gabor_121 gabor_032 gabor_096_alt gabor_010_alt gabor_121 gabor_032 "1_37_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2450_gabor_patch_orientation_096_010_121_032_target_position_3_4_retrieval_position_1" gabor_048_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_37_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_048_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 1792 2992 2292 fixation_cross gabor_093 gabor_038 gabor_003 gabor_062 gabor_093_alt gabor_038 gabor_003 gabor_062_alt "1_38_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_093_038_003_062_target_position_2_3_retrieval_position_2" gabor_circ gabor_176_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_38_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_176_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 1792 2992 1992 fixation_cross gabor_172 gabor_142 gabor_091 gabor_004 gabor_172_alt gabor_142_alt gabor_091 gabor_004 "1_39_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_172_142_091_004_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_053_framed blank blank blank blank fixation_cross_target_position_3_4 "1_39_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_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 1842 2992 2042 fixation_cross gabor_055 gabor_037 gabor_092 gabor_165 gabor_055_alt gabor_037_alt gabor_092 gabor_165 "1_40_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_055_037_092_165_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_165_framed blank blank blank blank fixation_cross_target_position_3_4 "1_40_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_165_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 2092 2992 2392 fixation_cross gabor_001 gabor_063 gabor_108 gabor_133 gabor_001 gabor_063 gabor_108_alt gabor_133_alt "1_41_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_001_063_108_133_target_position_1_2_retrieval_position_1" gabor_001_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_41_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_001_retrieval_position_1" 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 2242 fixation_cross gabor_145 gabor_113 gabor_007 gabor_033 gabor_145 gabor_113_alt gabor_007_alt gabor_033 "1_42_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_2250_gabor_patch_orientation_145_113_007_033_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_007_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_42_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_007_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 2192 2992 2192 fixation_cross gabor_121 gabor_005 gabor_162 gabor_091 gabor_121 gabor_005 gabor_162_alt gabor_091_alt "1_43_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2200_gabor_patch_orientation_121_005_162_091_target_position_1_2_retrieval_position_1" gabor_073_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_43_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_073_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_168 gabor_010 gabor_086 gabor_057 gabor_168_alt gabor_010 gabor_086 gabor_057_alt "1_44_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2000_gabor_patch_orientation_168_010_086_057_target_position_2_3_retrieval_position_1" gabor_168_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_44_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_168_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 1842 2992 1942 fixation_cross gabor_046 gabor_068 gabor_085 gabor_018 gabor_046_alt gabor_068_alt gabor_085 gabor_018 "1_45_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_046_068_085_018_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_018_framed blank blank blank blank fixation_cross_target_position_3_4 "1_45_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_018_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 2142 2992 2492 fixation_cross gabor_010 gabor_172 gabor_055 gabor_084 gabor_010_alt gabor_172_alt gabor_055 gabor_084 "1_46_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2500_gabor_patch_orientation_010_172_055_084_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_100_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_46_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_100_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 2142 fixation_cross gabor_124 gabor_084 gabor_015 gabor_050 gabor_124_alt gabor_084 gabor_015_alt gabor_050 "1_47_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_124_084_015_050_target_position_2_4_retrieval_position_2" gabor_circ gabor_034_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_4 "1_47_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_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 2492 fixation_cross gabor_085 gabor_103 gabor_137 gabor_163 gabor_085_alt gabor_103 gabor_137 gabor_163_alt "1_48_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_085_103_137_163_target_position_2_3_retrieval_position_2" gabor_circ gabor_053_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_48_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_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 2542 fixation_cross gabor_167 gabor_138 gabor_088 gabor_009 gabor_167 gabor_138_alt gabor_088 gabor_009_alt "1_49_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_167_138_088_009_target_position_1_3_retrieval_position_1" gabor_028_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_49_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_028_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 1742 2992 2492 fixation_cross gabor_081 gabor_131 gabor_002 gabor_159 gabor_081_alt gabor_131 gabor_002_alt gabor_159 "1_50_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_081_131_002_159_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 "1_50_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_021_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 1992 2992 1892 fixation_cross gabor_162 gabor_095 gabor_028 gabor_010 gabor_162_alt gabor_095_alt gabor_028 gabor_010 "1_51_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_162_095_028_010_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_078_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_51_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_078_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 2092 2992 2542 fixation_cross gabor_089 gabor_173 gabor_055 gabor_144 gabor_089_alt gabor_173 gabor_055 gabor_144_alt "1_52_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_089_173_055_144_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_010_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_52_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_010_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 2142 2992 2542 fixation_cross gabor_004 gabor_115 gabor_085 gabor_026 gabor_004 gabor_115_alt gabor_085 gabor_026_alt "1_53_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2150_3000_2550_gabor_patch_orientation_004_115_085_026_target_position_1_3_retrieval_position_2" gabor_circ gabor_067_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_53_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_067_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 2592 fixation_cross gabor_132 gabor_089 gabor_023 gabor_048 gabor_132 gabor_089_alt gabor_023 gabor_048_alt "1_54_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_132_089_023_048_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_158_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_54_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_158_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 1892 2992 2242 fixation_cross gabor_164 gabor_136 gabor_080 gabor_097 gabor_164 gabor_136 gabor_080_alt gabor_097_alt "1_55_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_164_136_080_097_target_position_1_2_retrieval_position_1" gabor_164_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_2 "1_55_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_164_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 1892 2992 1892 fixation_cross gabor_037 gabor_010 gabor_124 gabor_156 gabor_037 gabor_010_alt gabor_124 gabor_156_alt "1_56_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_037_010_124_156_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_174_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_56_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_174_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 1892 2992 2092 fixation_cross gabor_064 gabor_148 gabor_129 gabor_019 gabor_064 gabor_148_alt gabor_129_alt gabor_019 "1_57_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2100_gabor_patch_orientation_064_148_129_019_target_position_1_4_retrieval_position_1" gabor_064_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_57_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_064_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 2442 fixation_cross gabor_063 gabor_148 gabor_008 gabor_033 gabor_063_alt gabor_148_alt gabor_008 gabor_033 "1_58_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2450_gabor_patch_orientation_063_148_008_033_target_position_3_4_retrieval_position_2" gabor_circ gabor_098_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_58_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_098_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 2192 2992 2442 fixation_cross gabor_082 gabor_008 gabor_137 gabor_122 gabor_082_alt gabor_008 gabor_137_alt gabor_122 "1_59_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_082_008_137_122_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_122_framed blank blank blank blank fixation_cross_target_position_2_4 "1_59_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_122_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 1892 fixation_cross gabor_094 gabor_138 gabor_162 gabor_111 gabor_094 gabor_138_alt gabor_162 gabor_111_alt "1_60_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_094_138_162_111_target_position_1_3_retrieval_position_1" gabor_094_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_60_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_094_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 2192 2992 2142 fixation_cross gabor_081 gabor_012 gabor_047 gabor_065 gabor_081_alt gabor_012 gabor_047 gabor_065_alt "1_61_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_081_012_047_065_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_047_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_61_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_047_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 2042 2992 2492 fixation_cross gabor_102 gabor_135 gabor_079 gabor_028 gabor_102 gabor_135_alt gabor_079 gabor_028_alt "1_62_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_102_135_079_028_target_position_1_3_retrieval_position_1" gabor_102_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_62_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 64 292 292 399 125 1842 2992 2342 fixation_cross gabor_093 gabor_065 gabor_129 gabor_008 gabor_093_alt gabor_065 gabor_129 gabor_008_alt "1_63_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_2350_gabor_patch_orientation_093_065_129_008_target_position_2_3_retrieval_position_1" gabor_093_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_63_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_093_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 2242 2992 2342 fixation_cross gabor_049 gabor_097 gabor_022 gabor_007 gabor_049 gabor_097_alt gabor_022 gabor_007_alt "1_64_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_049_097_022_007_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_069_framed gabor_circ blank blank blank blank fixation_cross_target_position_1_3 "1_64_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_069_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 1942 2992 2092 fixation_cross gabor_087 gabor_026 gabor_006 gabor_114 gabor_087_alt gabor_026_alt gabor_006 gabor_114 "1_65_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2100_gabor_patch_orientation_087_026_006_114_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_051_framed gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_65_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_051_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 2242 2992 2042 fixation_cross gabor_142 gabor_096 gabor_166 gabor_055 gabor_142_alt gabor_096_alt gabor_166 gabor_055 "1_66_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2050_gabor_patch_orientation_142_096_166_055_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_055_framed blank blank blank blank fixation_cross_target_position_3_4 "1_66_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_055_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 1792 2992 2242 fixation_cross gabor_016 gabor_055 gabor_144 gabor_034 gabor_016 gabor_055_alt gabor_144_alt gabor_034 "1_67_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2250_gabor_patch_orientation_016_055_144_034_target_position_1_4_retrieval_position_2" gabor_circ gabor_104_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_1_4 "1_67_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_104_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_143 gabor_089 gabor_060 gabor_179 gabor_143_alt gabor_089 gabor_060 gabor_179_alt "1_68_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_143_089_060_179_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_060_framed gabor_circ blank blank blank blank fixation_cross_target_position_2_3 "1_68_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_060_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
43 63 292 292 399 125 2192 2992 2392 fixation_cross gabor_156 gabor_177 gabor_112 gabor_048 gabor_156_alt gabor_177_alt gabor_112 gabor_048 "1_69_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2200_3000_2400_gabor_patch_orientation_156_177_112_048_target_position_3_4_retrieval_position_2" gabor_circ gabor_130_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_target_position_3_4 "1_69_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_130_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 2092 2992 2042 fixation_cross gabor_144 gabor_011 gabor_062 gabor_123 gabor_144_alt gabor_011 gabor_062_alt gabor_123 "1_70_Encoding_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2050_gabor_patch_orientation_144_011_062_123_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_173_framed blank blank blank blank fixation_cross_target_position_2_4 "1_70_Retrieval_Working_Memory_MEG_P4_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_173_retrieval_position_4" 1 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;
}; |
793e1199a0fbde2bb4c6a4d1aa5a42fe8374a2b3 | 449d555969bfd7befe906877abab098c6e63a0e8 | /587/CH7/EX7.5/example7_5.sce | 981db8e7fdbfe10a0d67f5fdd532e4cded53a198 | [] | 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 | 757 | sce | example7_5.sce | clear;
clc;
//Example7.5[Heat Loss from a Steam Pipe in Windy Air]
d=0.1//diameter of pipe[m]
Ts=110;//Temp of ecternal surface of pipe[degree Celcius]
Ta=10;//Temp of air[degree Celcius]
va=8;//Velocity of air[m/s]
Tf=(Ts+Ta)/2;//Film temperature[degree Celcius]
k=0.02808;//[W/m.degree Celcius]
Pr=0.7202;//Prandtl Number
nu=1.896*10^(-5);//Kinematic viscosity[m^2/s]
//Solution:-
Re=(va*d)/nu;//Reynolds Number
Nu=0.3+((0.62*(Re^(0.5))*(Pr^(1/3)))/((1+((0.4/Pr)^(2/3)))^(1/4))*[(1+((Re/282000)^(5/8)))^(4/5)]);
disp(round(Nu),"The nusselt number is")
h=k*Nu/d;//[W/m^2.degree Celcius]
As=%pi*d*1;//Area of pipe per unit length[m^2]
Q=h*As*(Ts-Ta);//[W]
disp("W",ceil(Q),"The rate of heat loss from the pipe per unit of its length is") |
fbc889283661918fa1ef56192b4e6bc343389224 | 28f88c035b368ddbe3efd8f5dbf48f01496d1ad0 | /lab2/Mul16.tst | b38ed5d75acaacb65794e5a124e03b31ded77823 | [] | no_license | sandeepkasimalla/Computer_System_Design_CS4110 | 46c06acd04c7b0477ff37b76d127c15f005feb9b | 79d89db0b19f18b9a337fd8e18926114959c5323 | refs/heads/master | 2020-07-11T22:45:14.966087 | 2019-11-21T18:46:33 | 2019-11-21T18:46:33 | 204,659,866 | 0 | 0 | null | null | null | null | UTF-8 | Scilab | false | false | 416 | tst | Mul16.tst | load Mul16.hdl,
output-file Mul16.out,
compare-to Mul16.cmp,
output-list ip1%B1.16.1 ip2%B1.16.1 out%B1.16.1;
set ip1 %B0000000000000010,
set ip2 %B1111111111111101,
eval,
output;
set ip1 %B1111111111111101,
set ip2 %B1111111111111100,
eval,
output;
set ip1 %B0000000000000011,
set ip2 %B0000000000000101,
eval,
output;
set ip1 %B0000000000000100,
set ip2 %B1111111111111110,
eval,
output; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.