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
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0cf5fce643791104323a5501a7b28876b336ca5d
|
d9612cedad2cc7e72324ef98b63e914d2b9580b3
|
/Lab 3/16BIT011scilabscript.sce
|
9bb5c6358128657fdb30154823047b66fa432ece
|
[] |
no_license
|
DSheth97/Artificial-Intelligence
|
1a71c2d43e1f8565cd4a2c902eb6c4be47323df2
|
3ee8c9943db653ae7cd21f6a5cdf16d6c6515bff
|
refs/heads/master
| 2020-06-02T20:22:48.705866
| 2019-07-15T14:32:31
| 2019-07-15T14:32:31
| 191,298,532
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 847
|
sce
|
16BIT011scilabscript.sce
|
//creating the function of rosenbrock function
function y= f(x)
y=(100*((x(2)-(x(1)^2)))^2)+((1-x(1))^2); //eq of rosenbrock function
endfunction
//y=(100*((x2-(x1^2)))^2)+((1-x1)^2);
function a=g(x1,y1)
a=f([x1 y1]);
endfunction
x1=linspace(-2,15,200);
x2=linspace(-2,15,200);
//feval(x,y,f)returns the m×n matrix whose ij element is f(xi,yj)which will be transposed by using the single quote symbol “'“
z= feval(x1,x2,g)';
clf;
//to plot a surface 'surf' is used
surf(x1,x2,z);
//evaluating the function at given points
xa=[-1.2,1];
xb=[1,1];
//passing values in function
f0=f(xa);
f1=f(xb);
disp("At x0"+string(f0));
disp("At xs"+string(f1));
x=[-1.2,1];
//f0=f(xm,xn);
//disp("At xs"+string(f0));
//generating derivative and hessian using numderivative
[J,H] = numderivative(f, x);
disp(J);
disp(H);
|
fea11aa213fa30b4ae45ccd10b9483b9d5800e32
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/788/CH14/EX14.3.a/14_3_data.sci
|
b48789eaebf2d340b99bd4129e9802fabb1c5f63
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 479
|
sci
|
14_3_data.sci
|
// Aim:Refer Example 14-3 for Problem Description
// Given:
// air flow-rate:
Q=270; //scfm
// pressure at which compressor delivers air:
p_out=100; //psig
// overall efficiency of compressor:
eff_o=75; //%
// pressure at which compressor delivers air taking friction in account:
p_out1=115; //psig
// efficiency of electric motor driving compressor:
eff_mot=92; //%
// operating time of compressor:
t=3000; //hr/year
// cost of electricity per watt:
cost_per_wat=0.11; //$/kWh
|
9d17d6acd340558f6bd74553df6e34084c047044
|
dd1ecbd8dc9f2817544517bd6d33ef7c0fffccde
|
/projects/pp11/DivideTime.tst
|
176a0d106780df99324ffaf0ecf6b6753090e1ff
|
[] |
no_license
|
cujun/Nand2Tetris
|
b32254a2756e548832edfe6af535d24ac683226e
|
f745b58858328dc407e6770704a6ee9601079f0a
|
refs/heads/master
| 2021-01-22T00:09:30.350789
| 2017-12-20T07:27:53
| 2017-12-20T07:27:53
| 102,185,045
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 3,116
|
tst
|
DivideTime.tst
|
// Measure running time of Divide.asm
// Requirement: set R4 to 1, just before INFINITE_LOOP(end of program)
load DivideTime.asm,
output-file DivideTime.out,
output-list RAM[0]%D1.6.1 RAM[1]%D1.6.1 RAM[2]%D1.6.1 RAM[3]%D1.6.1 time%S1.5.1;
set PC 0,
set RAM[0] 17,
set RAM[1] 3,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 1000,
set RAM[1] 3,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 10000,
set RAM[1] 3782,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 1216,
set RAM[1] 12412,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 7399,
set RAM[1] 9907,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 6754,
set RAM[1] 679,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 4442,
set RAM[1] 1985,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 20795,
set RAM[1] 4262,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 8757,
set RAM[1] 6318,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 29911,
set RAM[1] 7675,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 10670,
set RAM[1] 4656,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 7722,
set RAM[1] 333,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 8852,
set RAM[1] 428,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 8461,
set RAM[1] 8461,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 32548,
set RAM[1] 2748,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 5537,
set RAM[1] 188,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 15082,
set RAM[1] 15082,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 1137,
set RAM[1] 7,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 27457,
set RAM[1] 27457,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 5568,
set RAM[1] 9,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 3934,
set RAM[1] 3934,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
set PC 0,
set RAM[0] 25563,
set RAM[1] 7945,
set RAM[2] -1;
set RAM[3] -1;
set RAM[4] -1;
while RAM[4] <> 1 {
ticktock;
}
output;
|
bcdf6a478f202c703da4ad213022c6465e55faa6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1004/CH1/EX1.14/Ch01Ex14.sci
|
fcf1fecce7f8d7c7aeed896e4380b6ba5f4f1f03
|
[] |
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
| 517
|
sci
|
Ch01Ex14.sci
|
// Scilab Code Ex1.14 Speed of an electron for an equivalent proton mass: Pg: 25 (2008)
c = 3e+08; // Speed of light, m/s
m0 = 1; // For convenience, rest mass of an electron is assumed to be unity
m = 2000*m0; // Rest mass of a proton, units
// As m = m0/sqrt(1 - (v/c)^2), solving for v
v = sqrt(1 - (m0/m)^2)*c; // Speed of the moving electron, m/s
printf("\nThe speed of the moving electron = %4.2e m/s (approx.)", v);
// Result
// The speed of the moving electron = 3.00e+008 m/s (approx.)
|
5a9923767d8626b4bcb745b6cbe3878e50deb486
|
afd96675ead32880ce7928ad141c8e12ac66b141
|
/firstblock/scilabcompfn/my_mean.sci
|
330b5b89b1984a32feb7daed8cba534ef7dde539
|
[] |
no_license
|
KWMalik/dspblock
|
a26c722c604e3db33734fb94f42dbcfe8b9b28d6
|
949c3411a292460c246cd52c0846f01c63e9c79d
|
refs/heads/master
| 2020-12-01T01:15:46.197082
| 2012-05-22T10:01:12
| 2012-05-22T10:01:12
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,177
|
sci
|
my_mean.sci
|
// ====================================================================
// Template toolbox_skeleton
// This file is released under the 3-clause BSD license. See COPYING-BSD.
// ====================================================================
//
//
function block = my_mean(block, flag)
if flag == 1 then
averagealong = block.ipar(1);
//0: columns
//1: rows
//2: all
nrows = block.insz(1);
ncols = block.insz(2);
M = zeros(nrows, ncols);
for i = 1:nrows
for j = 1:ncols
M(i,j) = block.inptr(1)((j-1)*nrows+i);
end
end
if averagealong == 0 //colums
N = mean(M,'c');
outsize = ncols;
elseif averagealong == 1 //rows
N = mean(M, 'r');
outsize = nrows;
elseif averagealong == 2 //all
N = mean(M);
outsize = 1;
else
//return error
end
for i=1:outsize
block.outptr(1)(i) = N(i);
end
//output N
end
endfunction
// ====================================================================
|
39009ca3222c5eb8ab0d75fadbcd3781bff5ea2d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/154/DEPENDENCIES/ch12_6.sce
|
039e4f53ca83f1f2c08b2b8cebba531bb0684977
|
[] |
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,078
|
sce
|
ch12_6.sce
|
clc
disp("Example 12.6")
printf("\n")
printf("Given")
disp("The system CBA is WYE connected")
disp("Maximum line voltage is 150V")
disp("The three impedances are 6(0 deg),6(30 deg),5(45 deg)")
ZAmag=6;ZAph=0;
ZBmag=6;ZBph=30;
ZCmag=5;ZCph=45;
//Let maximum line voltage is Vmax
Vmax=150
//Let the line to neutral voltage magnitude be Vn
Vn=Vmax/sqrt(3)
//From fig 12.7(b)
//VAN=Vn(-90 deg)
//VBN=Vn(30 deg)
//VCN=Vn(150 deg)
//From figure 12.16
IAmag=Vn/ZAmag
IAph=-90-ZAph
printf("\nIA=%3.2f(%d deg)A\n",IAmag,IAph);
IBmag=Vn/ZBmag
IBph=30-ZBph
printf("\nIB=%3.2f(%d deg)A\n",IBmag,IBph);
ICmag=Vn/ZCmag
ICph=150-ZCph
printf("\nIC=%3.2f(%d deg)A\n",ICmag,ICph);
//Now to calculate IN
//IN=-(IA+IB+IC)
x=IAmag*cos((IAph*%pi)/180);
y=IAmag*sin((IAph*%pi)/180);
z=complex(x,y)
x1=ICmag*cos((ICph*%pi)/180);
y1=ICmag*sin((ICph*%pi)/180);
z1=complex(x1,y1)
x2=IBmag*cos((IBph*%pi)/180);
y2=IBmag*sin((IBph*%pi)/180);
z2=complex(x2,y2)
IN=-(z+z1+z2)
[R,Theta]=polar(IN)
printf("\nIN=%3.2f(%d deg)A\n",R,Theta*(180/%pi));
|
46bb6656a5ac063315e73ad3a8a58db149167e53
|
d0ae33963d74821bd5431610a631245d4d389c10
|
/lab03/lab3.sci
|
21a0f4e924c2c314db42225d30977163032ab4ca
|
[] |
no_license
|
alexandrempierre/ala
|
09de761c6a7e84445fb28e1eae06f3911dfa3284
|
2f9b6e9f57954d29a670167aadd8baa63796be09
|
refs/heads/master
| 2016-08-12T06:39:39.116391
| 2016-01-29T14:31:21
| 2016-01-29T14:31:21
| 49,913,312
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 2,221
|
sci
|
lab3.sci
|
// Pergunta 1
//
// Que o pivô (a1) é diferente de zero
//
// Pergunta 2
//
// c = - aij/ajj, porque esse escalar multiplicado pela linha j e o
// resultado somado à linha i, zera aij que é imediatamente anterior à diagonal
// principal e é o primeiro elemento não-nulo da linha i
//
//
//
//
function [E] = elementar(tam, lin_alfa, col_alfa, alfa)
E = eye(tam, tam) // Crio uma matriz tam x tam preenchida com 1's na diagonal principal e com 0's nas outras posições (identidade)
E(lin_alfa, col_alfa) = -alfa //Mudo um elemento específico para o inverso de um número passado como parâmetro
endfunction
function [A] = eliminacao(A)
[m, n] = size(A) // número de linhas e colunas da Matriz utilizada
for j = 1:m-1 // Percorrer as linhas até a penúltima para escolher os pivôs
pivo = A(j,j) // Escolher o pivô da linha na diagonal principal da matriz
for i = j+1:m // Percorre as linhas da seguinte ao pivô até o final
alfa = A(i,j) / pivo // Define o escalar que vai multiplicar a linha do pivô no próximo passo
// Subtrai da linha corrente o produto escalar entre alfa (ajj/aij) e a linha do pivô
// Opera sobre as linhas apenas nos elementos a partir da coluna do pivô (os anteriores devem necessariamente ser iguais a zero)
A(i, j:n) = A(i, j:n) - alfa*A(j, j:n)
end
end
endfunction
function [x] = subsreversa (U)
[m, n] = size(U)
x = zeros(m, 1)
for j = m:-1:1 // Percorrer as linhas da Matriz, da última para a primeira
x(j) = U(j, n) // Pega o valor do lado direito da igualdade na linha atual
for i = m:-1:j+1 // Percorrer as colunas da Matriz, do último coeficiente (linha) até a linha atual
x(j) = x(j) - U(j,i)*x(i) //Subtrai do valor do lado direito os produtos entre coeficientes e variáveis já conhecidas
// Na penúltima linha de uma matriz 3x3 irá subtrair c*z do valor que está à direita da igualdade
end
x(j) = x(j)/U(j,j) // Divide resultado pelo coeficiente que multiplica a variável desconhecida, caso esse valor seja diferente de zero, a variável passa a ser conhecida
end
endfunction
|
071ea578a1140f96bc8c7038e8b5b6b5af1d8148
|
b24d354cfcd174c92760535d8b71e22ced005d81
|
/DSP functions/tf2ca/test_1.sce
|
db4fc995260bae4ccdb1cabbcfc75c2f12c3bfd6
|
[] |
no_license
|
shreniknambiar/FOSSEE-Signal-Processing-Toolbox
|
57ad8e2a71d64f95c4ccfd131e00095cf2b9c6f8
|
143cf61eff31240870dc0c4f61e32818a4482365
|
refs/heads/master
| 2021-01-01T18:25:34.435606
| 2017-07-25T18:23:47
| 2017-07-25T18:23:47
| 98,334,322
| 0
| 0
| null | 2017-07-25T17:48:00
| 2017-07-25T17:47:59
| null |
UTF-8
|
Scilab
| false
| false
| 198
|
sce
|
test_1.sce
|
// Test # 1 : No Input Arguments
exec('./tf2ca.sci',-1);
[d1,d2,b]=tf2ca();
//!--error 10000
//Only 2 input arguments allowed
//at line 37 of function tf2ca called by :
//[d1,d2,b]=tf2ca();
|
604cd21ecf8514e0b729c6702293b35e6446957b
|
e0c1e7e8cb7074e354e2baf085ed4c6d77ca157a
|
/TAREAS/tercer tarea/primera.sce
|
eab82ce5da267debe6f29863a92265440407c7ba
|
[] |
no_license
|
solanosandoval/SOLANO.SANDOVAL.JORGE.ALEJANDRO
|
00a9ff678605cbb2665100f9c57b6940e54ce97c
|
fd34afd8c8750a70b081475e06858e2e7092a1e2
|
refs/heads/master
| 2020-04-17T00:28:35.687396
| 2019-04-11T13:49:11
| 2019-04-11T13:49:11
| 166,051,105
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,244
|
sce
|
primera.sce
|
--> grados1=70
grados1 =
70.
--> grados2=30
grados2 =
30.
--> grados3=90
grados3 =
90.
--> radianes1=grados1*%pi/180
radianes1 =
1.2217305
--> radianes2=grados2*%pi/180
radianes2 =
0.5235988
--> radianes3=grados3*%pi/180
radianes3 =
1.5707963
--> z=[cos(radianes1) -sin(radianes1) 0;sin(radianes1) cos(radianes1) 0;0 0 1]
z =
0.3420201 -0.9396926 0.
0.9396926 0.3420201 0.
0. 0. 1.
--> y=[cos(radianes2) 0 sin(radianes2);0 1 0;-sin(radianes2) 0 cos(radianes2)]
y =
0.8660254 0. 0.5
0. 1. 0.
-0.5 0. 0.8660254
--> zy=z*y
zy =
0.2961981 -0.9396926 0.1710101
0.8137977 0.3420201 0.4698463
-0.5 0. 0.8660254
--> x=[1 0 0;0 cos(radianes3) -sin(radianes3);0 sin(radianes3) cos(radines3)]
Undefined variable: radines3
--> x=[1 0 0;0 cos(radianes3) -sin(radianes3);0 sin(radianes3) cos(radianes3)]
x =
1. 0. 0.
0. 0. -1.
0. 1. 0.
--> zyx=zy*x
zyx =
0.2961981 0.1710101 0.9396926
0.8137977 0.4698463 -0.3420201
-0.5 0.8660254 0.
|
1b959dc6f852bb8ab9c783208245e62392b2ab4e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3754/CH3/EX3.2/3_2.sce
|
4675465f7a5714828660564e21af91f9568681a5
|
[] |
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
| 252
|
sce
|
3_2.sce
|
clear//
//Variables
V = 1.5 //Voltage (in Volts)
E =7.5 //Energy produced (in Joules)
//Calculation
Q = E/V //Charge separated ( in Coulomb )
//Result
printf("\n The Amount of charge separated by the battery is %0.3f C.",Q)
|
ab28acf7baf1cacd9007e1928b3e63354a85bc5e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3669/CH6/EX6.1/1.sce
|
6508af5d6a157f2aab704c65641a7a3a64c6fb9a
|
[] |
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
| 327
|
sce
|
1.sce
|
//Variable declaration
N=3*10**28; //number of atoms(per m**3)
alpha_e=10**-40; //electronic polarizability(F m**2)
epsilon0=8.85*10**-12;
//Calculation
epsilonr=(alpha_e*N/epsilon0)+1; //dielectric constant of material
//Result
printf('dielectric constant of material is %0.3f \n',(epsilonr))
|
3a26170b75aee5439dac87c21d23354adb6d0b07
|
8ea401b354e99fe129b2961e8ee6f780dedb12bd
|
/macros/applymap.sci
|
4f05f76700d1818ef45e6340e439541111bd7962
|
[
"BSD-2-Clause"
] |
permissive
|
adityadhinavahi/SciPandas
|
91340ca30e7b4a0d76102a6622c97733a28923eb
|
b78b7571652acf527f877d9f1ce18115f327fa18
|
refs/heads/master
| 2022-12-20T04:04:35.984747
| 2020-08-19T16:10:51
| 2020-08-19T16:10:51
| 288,765,541
| 0
| 1
| null | 2020-08-19T15:35:04
| 2020-08-19T15:14:46
|
Python
|
UTF-8
|
Scilab
| false
| false
| 676
|
sci
|
applymap.sci
|
function applymap()
// Apply a function to a Dataframe elementwise.
//
// Syntax
// dfr.applymap(input_string)
//
// Parameters
// input_string : String containing the function to be passed. Scilab functions are not supported as of now.
// // For additional information on parameters, see https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.applymap.html#pandas.DataFrame.applymap
// Returns : DataFrame
//
// Examples
// // Apply Square - Root function to the DataFrame
// dfr.applymap("np.sqrt")
// // Lambda functions are also supported.
//
// Authors
// Aditya Dhinavahi
// Sundeep Akella
endfunction
|
8c42b8a02e911fb6e823351dd22aa804401858f1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1484/CH4/EX4.9/4_9.sce
|
44855874232a5adcb039e422ceaeafb80f3e0b9f
|
[] |
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
| 315
|
sce
|
4_9.sce
|
clc
//initialisation of variables
H1= 9 //ft
A= 2 //ft^2
H2= 4 //ft
d= 2.25 //in
t= 60 //sec
g= 32.2 //ft/sec^2
//CALCULATIONS
a= (d/12)^2
Cd= (A*H2*(H2-A))/(t*a*sqrt(2*g))
//RESULTS
printf ('coefficient of dicharge = %.3f ',a)
//ANSWER GIVEN IN THE TEXTBBOK IS WRONG..VERIFIED WITH CALCULATOR
|
9e0a1e1eba3b847aab2696b259951d24ea12d01f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1553/CH24/EX24.13/24Ex13.sce
|
35be8c2eaf4899b4bb41bb73c1427888c5b238e2
|
[] |
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
| 309
|
sce
|
24Ex13.sce
|
//Chapter 24 Ex 13
clc;
clear;
close;
inc=3; dec=4;
x=poly(0,'x');
y=(x-7); //from given condition 1
y=(3*x-12)/4; //from given condition 2
for x=1:99
if (x-7)==((3*x-12)/4) then
break;
end
end
y=x-7;
area=2*(x+y);
mprintf("The perimeter of the rectangle is %d cm.",area);
|
fddd8290466550c47470fafb59e1db12a7e54ea1
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1895/CH7/EX7.3/EXAMPLE7_3.SCE
|
d26814b3a50ef49ebaad3b00a71d89225e429a03
|
[] |
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,038
|
sce
|
EXAMPLE7_3.SCE
|
//ANALOG AND DIGITAL COMMUNICATION
//BY Dr.SANJAY SHARMA
//CHAPTER 7
//SAMPLING THEORY AND PULSE MODULATION
clear all;
clc;
printf("EXAMPLE 7.13(PAGENO 326)");
//given
//x(t) = 8*cos(200*%pi*t)
f= 100//highest frequency component of continuous time signal in hertz
f_s2 = 400//sampling frequency in hertz for second condition
f_s3 = 400//sampling frequency in hertz for third condition
f_s4 = 150//sampling frequency in hertz for fourth condition since 0 < f_s4 < f_s2/2
//calcultions
NR = 2*f//Nyquist rate
F_1 = f/NR;
F_2 = f/f_s2;
F_3 = f/f_s3;
F_4 = f/f_s4;
f_4 = f_s4*F_4;
//results
printf("\n\nThe discrete time signal x(n) for the first condition is x(n) = 8*cos(2*3.14*%.2f*n)",F_1);
printf("\n\nthe discrete time signal x(n) for the second condition is x(n) = 8*cos(2*3.14*%.2f*n)",F_2);
printf("\n\nthe discrete time signal x(n) for the third condition is x(n) = 8*cos(2*3.14*%.2f*n)",F_3);
printf("\n\nThe discrete time signal x(n) for the fourth condition is x(n) = 8*cos(2*3.14*%.2f*t)",f_4);
|
6bdf07dee034de4b878215464584235421b89567
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2024/CH14/EX14.5/14_5.sce
|
08e55884a0622ad69b134caf81eec65e49b89a76
|
[] |
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,129
|
sce
|
14_5.sce
|
clc
//Initialization of variables
hc=73.5
hb=26.28
hd=91.58
hc2=190.7
hd2=244.3
hb2=44.4
m1=1 //lbm
m2=0.461 //lbm
hc1=73.5
hd1=83.35
hc2=197.58
hd2=224
hb1=12.55
//Calculations
w1=hc-hd
qa1=hc-hb
cop1=abs(qa1/(w1))
hp1=4.71/cop1
w2=hc2-hd2
qa2=hc2-hb2
cop2=abs(qa2/(w2))
hp2=4.71/cop2
qa3=m1*(hc1-hb1)
w3=m1*(hc1-hd1) + m2*(hc2-hd2)
cop3=abs(qa3/w3)
hp3=4.71/cop3
//results
disp("part a")
printf("Work done = %.2f Btu/lbm",w1)
printf("\n Heat = %.2f Btu/lbm",qa1)
printf("\n horsepower required per ton of refrigeration = %.3f hp/ton refrigeration",hp1)
printf("\n Coefficient of performance actual = %.2f ",cop1)
printf("\n Work done = %.1f Btu/lbm",w2)
printf("\n Heat = %.2f Btu/lbm",qa2)
printf("\n horsepower required per ton of refrigeration = %.3f hp/ton refrigeration",hp2)
printf("\n Coefficient of performance actual = %.2f ",cop2)
disp("part b")
printf("\n Work done = %.1f Btu/lbm",w3)
printf("\n Heat = %.2f Btu/lbm",qa3)
printf("\n horsepower required per ton of refrigeration = %.3f hp/ton refrigeration",hp3)
printf("\n Coefficient of performance actual = %.2f ",cop3)
|
977927b4d2899683931c60d368049686747ab0f7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1658/CH13/EX13.5/Ex13_5.sce
|
b173ca86e0e0ce6163e955e88ca7ecb0525a8b79
|
[] |
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
| 121
|
sce
|
Ex13_5.sce
|
clc;
//e.g 13.5
N=150;
mur=3540;
mu0=4*%pi*10**-7;
l=0.05;
A=5*10**-4;
L=(mur*mu0*A*N*N)/l;
disp('H',L*1,"L=");
|
37e3775e1130237473a838bb1cfbf264e93f54a5
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1627/CH5/EX5.6/Ex5_6.sce
|
3d5d7308e9cd7b7574b809038ff80773c2449ff6
|
[] |
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
| 320
|
sce
|
Ex5_6.sce
|
clc
//initialisation of variables
m=27*10^-3//N.s/m^2
sg=0.90
m1=27//cp
v1=5.6*10^-4//lbf.sec/ft^2
v2=2.5*10^-2//m
y=9802//N/m^3
g=9.8//m/s^2
Nr=4000
Nr1=2000
//CALCULATIONS
P=(y*sg)/g//N.s^2/m^4
V1=(Nr*m)/(v2*P)//m/s
V2=(Nr1*m)/(v2*P)//m/s
//RESULTS
printf('The critical velocity range is=% f m/s',V2)
|
266736292c6b4e5b62201a4c35520c661530010e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3772/CH14/EX14.1/Ex14_1.sce
|
ece91e44955b4778a8aaf2efe2b17dd412ef15ca
|
[] |
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,066
|
sce
|
Ex14_1.sce
|
// Problem no 14.1,Page No.325
clc;clear;
close;
b=2 //m //width
FOS=1.5 //Factor of safety
//rho_mason=2.5*rho_w
mu=0.5 //coeffeicient of friction
//Calculations
//Let L=1 m (length of dam)
L=1
//W=b*H*L*rho
//After substituting values and Further simplifying we get
//W=2*H*rho
//Total Pressure
//P=W*H**2*2**-1
x_bar=b*2**-1 //Distance of Line of action of W from waterface
//Distance of pt where resultant cuts the base measured from Line of action
//x=P*W**-1*H*3**-1
//After substituting values and Further simplifying we get
//x=H**2*30**-1
//x_bar+x=2*b*3**-1
//After substituting values and Further simplifying we get
//1+H**2*30**-1=2*b*3**-1
H=(30*(2*b*3**-1-1))**0.5 //height of dam
//Frictional Resistance offered at the base
//F=mu*W
//After substituting values and Further simplifying we get
//F=3.16*rho
//Total Lateral Pressure
//P=W*H**2*2**-1
//P=4.99*W
//Factor of safety against sliding
//FOS1=F*P**-1=3.16*4.99**-1*rho_mason*rho_w**-1
FOS1=3.16*4.99**-1*2.5
//FOS1>FOS
//Result
printf("Dam is safe against sliding = %.2f m",FOS1)
|
808dc70f0e8d5ba77e337efc2a9dbbf96e648576
|
b32474ae2727233775f44c71edfe1f10b6a3430f
|
/Inversa.sce
|
623a4067f7e2f5cb148fa766634bda736a2d160b
|
[] |
no_license
|
lucaslyon96/scilab
|
8400b98c25dafa13069dd64bd391c15218323575
|
8fe45fd3bd27ab21490682874f72f9c20c8717e1
|
refs/heads/master
| 2020-03-18T12:25:20.253687
| 2018-05-24T14:49:08
| 2018-05-24T14:49:08
| 134,725,468
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,984
|
sce
|
Inversa.sce
|
function a=inversa(u)
[l,c]=size(u)
np=1 //numero do pivo
if l~=c then
disp("A deve ser quadrada")
a="erro"
else
e(:,:)=0
for i=1:l
e(i,1:l)=u(i,1:l)
end
for i=1:l
e(i,l+i)=1
end
disp("[A | I]=")
disp(e)
for n=1:c // numero da coluna a ser escalonada
if np==l+1 then // numero do pivo e menor ou igual ao numero de linhas
break
end
//
if e(np,n)==0 then
for i=np+1:l // se a primeira entrada for zero, entao procure entradas não nulas
if e(i,n)~=0 then
disp("L"+string(i)+" <=> L"+string(np))
for j=1:2*l // permutar a linha da primeira entrada com uma linha de entrada nao nula
aux=e(i,j)
e(i,j)=e(np,j);
e(np,j)=aux;
end
disp(e)
break
end
end
end
if e(np,n)~=0 then //se a linha possui entrada nao nula, entao escalonar
if e(np,n)~=1 then
k=e(np,n)
e(np,n)=1
disp("(1/"+string(k)+")L"+string(np)+" => L"+string(np))
for j=n+1:2*l // deixar o pivo igual a 1 e dividir as demais entradas
e(np,j)=e(np,j)/k
end
disp(e)
end
for i=np+1:l
if e(i,n)~=0 then
disp("L"+string(i)+"+("+string(-e(i,n))+")L"+string(np)+ " => L"+string(i))
k=e(i,n)
e(i,:)=e(i,:)-k*e(np,:) // zerar as entradas abaixo do pivo
disp(e)
end
end
b(np)=n
np=np+1
else
disp("A matriz não possui inversa")
a="erro"
return
end
//
end
m = np-1
for n=2:m
for i=1:m-n+1
disp("L"+string(i)+"+("+string(-e(i,b(m-n+2)))+")L"+string(n)+ " => L"+string(i))
k=e(i,b(m-n+2))
e(i,:)=e(i,:)-k*e(m-n+2,:) // zerar as entradas acima do pivo
disp(e)
end
end
for i=1:l
a(i,:)=e(i,l+1:2*l)
end
end
endfunction
|
8af28b6c97fec400d0cc543ca74b7e15f419a316
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/browsable_source/2.4/Unix-Windows/scilab-2.4/demos/lmitool/fullstate.sci
|
259fc97914d45b364d658e7667d6e9e27d551d2b
|
[
"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
| 1,268
|
sci
|
fullstate.sci
|
function [X,Y,gama]=fullstate(A,B1,B2,C1,D12,D11)
// Copyright INRIA
// Generated by lmitool on Thu Feb 09 11:30:44 MET 1995
Mbound = 1e3;
abstol = 1e-10;
nu = 10;
maxiters = 100;
reltol = 1e-10;
options=[Mbound,abstol,nu,maxiters,reltol];
///////////DEFINE INITIAL GUESS AND PRELIMINARY CALCULATIONS BELOW
X_init=eye(A)
Y_init=zeros(B2');
gama_init=1
I1=eye(B1'*B1);I2=eye(C1*C1');
///////////
XLIST0=list(X_init,Y_init,gama_init)
XLIST=lmisolver(XLIST0,fullstate_eval,options)
[X,Y,gama]=XLIST(:)
/////////////////EVALUATION FUNCTION////////////////////////////
function [LME,LMI,OBJ]=fullstate_eval(XLIST)
[X,Y,gama]=XLIST(:)
/////////////////DEFINE LME, LMI and OBJ BELOW
LME=X-X' ;
LMI=-[A*X+X*A'+B2*Y+Y'*B2',B1,X*C1'+Y'*D12';
B1',-gama*I1,D11';
C1*X+D12*Y,D11,-gama*I2]
OBJ=gama
|
c478292d52cb9e733db39201576b60c5e3ab52f8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1670/CH2/EX2.22/2_22.sce
|
802229ad35568c408d5a875aa6f259d7f3f2d438
|
[] |
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,156
|
sce
|
2_22.sce
|
//Example 2.22
//Graeffe Method
//Page no. 40
clc;clear;close;
a=[1,-4,5,-2]
k=0;
for k=2:6
for i=1:4
a(k,i)=(-1)^(i-1)*(a(k-1,i))^2
j=1;
while i+j<5 & i+j>2
a(k,i)=a(k,i)+(-1)^(i-j-1)*2*(a(k-1,i-j))*a(k-1,i+j)
break
j=j+1;
end
end
end
printf('\t\t\t\ta1\t\t\t\ta2\t\t\t\ta3\n k\ta0\ta1\t\t--\t\ta2\t\t--\t\ta3\t\t--\t\n\t\t\t\ta0\t\t\t\ta1\t\t\t\ta2')
printf('\n----------------------------------------------------------------------------------------------------\n')
for i=1:4
printf(' %i\t%g\t%.4g\t\t%.5g\t\t%.9g\t\t%.8g\t%g\t\t%.10g\n',i-1,a(i,1),a(i,2),abs(a(i,2)/a(i,1))^(1/(2^(i-1))),a(i,3),abs(a(i,3)/a(i,2))^(1/(2^(i-1))),a(i,4),abs(a(i,4)/a(i,3))^(1/(2^(i-1))))
end
for i=5:6
printf(' %i\t%g\t%.4g\t%.5g\t\t%.9g\t%.8g\t%.7g\t%.10g\n',i-1,a(i,1),a(i,2),abs(a(i,2)/a(i,1))^(1/(2^(i-1))),a(i,3),abs(a(i,3)/a(i,2))^(1/(2^(i-1))),a(i,4),abs(a(i,4)/a(i,3))^(1/(2^(i-1))))
end
printf('\n\nThe Absolute Values of the roots are %g, %.8g and %g',abs(a(i,2)/a(i,1))^(1/(2^(i-1))),abs(a(i,3)/a(i,2))^(1/(2^(i-1))),abs(a(i,4)/a(i,3))^(1/(2^(i-1))))
|
0692efc95604cfc8860af67464176cfcd98e3457
|
918e8207504f36c7eaf613b62c71e91ad3a33a8a
|
/2017/educrace_by_lulu/EducRace/DATA/Scenario/EndRaceGrid.sce
|
93d2e7cbfc92a73b4965b9efcbd26cb22fea7bea
|
[] |
no_license
|
lazarusccr/GraphicsContest
|
b1299eeb74449b8714f126deeb64dc02da285260
|
8dec398588970e958c7f08ab7be32af760acbbd6
|
refs/heads/master
| 2021-04-29T07:29:46.122593
| 2017-12-28T16:26:51
| 2017-12-28T16:26:51
| 77,950,829
| 4
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 88
|
sce
|
EndRaceGrid.sce
|
Tint 0 0 0 0
TintAlphaChange 100 1 Linear
Wait 1
TintAlphaChange 0 1 Linear
Wait 1
Loop
|
4d311af6eb1fd57b245425d98cc2e4124647d8e0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1850/CH8/EX8.7/exa_8_7.sce
|
dd3d3b07e1beaafde98392589e33d1adcdc8be27
|
[] |
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
| 457
|
sce
|
exa_8_7.sce
|
// Exa 8.7
clc;
clear;
close;
//given data
R1= 150;// in ohm
R2= 68;// in kohm
R2=R2*10^3;// in ohm
Vin= 500;// in mv
V_sat= 14;//in volt
V_pos= R1/(R1+R2)*V_sat;// in volt
V_UT= V_pos;//in volt
// In the same way when output is -14 volts and starts increasing in negative direcition
V_sat=-14;//in volt
V_pos= R1*V_sat/(R1+R2);// in volt
V_LT= abs(V_pos);//in volt
disp(V_UT,"Value of V_UT in volts")
disp(V_LT,"Value of V_LT in volts")
|
ac232378a3f0a0b7c4e248e3d502d6e2b15043eb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2855/CH12/EX12.27/Ex12_27.sce
|
f4fbc47615ba8391ec574fcc301adb01d89690c2
|
[] |
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
| 261
|
sce
|
Ex12_27.sce
|
//Chapter 12
//page no 494
//given
clc;
clear all;
Voutp=28; //in dB
Pin=1; //in mW
R=800; //in V/W
Vavg=10^(Voutp/20); //in
m=Vavg*sqrt(2)/Pin/R;
printf("\n The modulation depth ,m = %0.1f percent",m*100);
|
5cde20862f62de7922db8e6a5eb7ad63063daf8b
|
ad617742f184bf6d4cceb3e9c99232d8bd52b862
|
/tests/ilc.tst
|
ae71f34669d92049064e5f4682291ab83cf81172
|
[
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-other-permissive",
"BSD-2-Clause"
] |
permissive
|
9track/hyperion
|
d621343e7eea27c45db49c7c284dd1680491c82c
|
9ceed2cc7261820eef01c55dac9b9a6ae47636b2
|
refs/heads/master
| 2022-09-15T12:19:09.059528
| 2020-05-28T03:05:29
| 2020-05-28T03:05:29
| 268,044,749
| 3
| 1
|
NOASSERTION
| 2020-05-30T09:03:56
| 2020-05-30T09:03:55
| null |
UTF-8
|
Scilab
| false
| false
| 851
|
tst
|
ilc.tst
|
# This test file was generated from offline assembler source
# by bldhtc.rexx 16 Jan 2016 12:11:11
# Treat as object code. That is, modifications will be lost.
# assemble and listing files are provided for information only.
*Testcase ilc
numcpu 1
sysclear
archmode z
r 60=00020000000000000000000000000000
r 70=0002000000000000000000000000DEAD
r 1A0=00000001800000000000000000000200
r 1D0=00000001800000000000000000000220
r 200=41F00C0041200021EB110240002FEB9B
r 210=0248002FAD440000A72C0002B2B20060
r 220=D213F000008C41F0F020D5010260008E
r 230=47700238B2B20150
r 238=B2B20070000000000000000000000020
r 248=00000000400000000000000000000218
r 258=000000000000021B0080
runtest .1
*Compare
gpr
*Gpr 2 0042
r 8c.14 # last program check for info
r c00.14
r c00.c
*Want "MHI ilc" 00040080 00000000 000040F0
r c20.14
*Done
|
884e597051b56450c1f2ecc281554ec70f4a867b
|
c9e04373e33a2721547c7ae2be20ee84f115be1c
|
/evaluationData/average.sce
|
dd671efba01504a0f2b9e2fff0a69a4116a9be85
|
[] |
no_license
|
lspxian/junsp
|
f944ce163267608cb9cdb939a0ac809f724fb396
|
ca1571bbc30e6a9a183fa8d675567e169288acf4
|
refs/heads/master
| 2021-01-23T14:10:34.141815
| 2017-10-06T17:03:10
| 2017-10-06T17:03:10
| 34,068,408
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 136
|
sce
|
average.sce
|
figure();
mapped= read("MappedRevenue.txt",-1,2);
time = mapped(20:1500,$-1);
average= mapped(20:1500,$) ./ time;
plot2d(time,average);
|
84c1208119021aff5cc77330bcbfa62c900e938c
|
48699abe95afd113abb8b91b4c8f6ed5ef51fe5d
|
/examples/fuzzy_invp/fuzzy_invp.tst
|
880d2a925bb529a321032f11d372198480eaea33
|
[] |
no_license
|
shangfute/CPFuzz
|
9e38d2ad568e67c914c50fde53cd7546aae12f81
|
54e141faed5ffe5b20b255e33b78b2e664b79739
|
refs/heads/master
| 2022-09-24T01:19:21.810655
| 2020-06-08T17:35:48
| 2020-06-08T17:35:48
| 270,758,276
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,338
|
tst
|
fuzzy_invp.tst
|
delta_t = 0.01
plant_pvt_init_data = None
# ideal X0
# initial_set = [[-0.1, -0.1, 0.0], [0.1, 0.1, 0.0]]
# hardest
#error_set = [[-1., -0.6, 5.40], [1., 0.6, 5.45]]
# smaller X0
#initial_set = [[-0., -0., 0.0], [0.1, 0.1, 0.0]]
#error_set = [????]
# property: P1 [can make X0 bigger by extending into -ve direction]
# vio = 8/100k [time without plotting = 10min]
# grid_eps = 1., 1., 2.0
# num_samples = 5
# falsification times with plotting: 35m [1st iter]
# falsification times with SS = 0.1 min!! [no plotting]
#midist=X, used random smt coupled with smt
T = 0.1
initial_set = [[-0.0, -0.0, 0.0], [1.00, 1.0, 0.0]]
error_set = [[-4, 1.5, -20], [4.0, 10, 20]]
MAX_ITER = 10
grid_eps = [1.0, 1.0, 2.0]
#grid_eps = 0.02, 0.02, 0.2
min_smt_sample_dist = 0.5
num_samples = 5
#num_samples = 1 # for testing
######################################
initial_discrete_state = [0]
initial_controller_integer_state = []
initial_controller_float_state = []
num_control_inputs = 1
# Reference signal \in [0.0, 4.0]
# Disturbances ... add later
#ci = [[0.], [0.]]
ci = [[0.0],[1.0]]
pi = [[],[]]
################
# Simulators
################
# Plant
plant_description = 'python'
plant_path = 'invp.py'
#Controller
controller_path = 'fuzzy_controller.so'
controller_path_dir_path = './paths'
CONVERSION_FACTOR = 1.0
refinement_factor = 2.0
|
354b1e0e2479215efd07a479b8b96eee7388638f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/243/CH4/EX4.17/4_17.sce
|
1fe588ab33d98655debf6ea9c7fc86132f4378f9
|
[] |
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
| 99
|
sce
|
4_17.sce
|
//Example No. 4_17
//Pg No. 83
disp('Theoritical Problem')
disp('For Details go to page no. 83')
|
d86cdb882c5847aba75d79d67d344750e2614d2a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/275/CH1/EX1.1.27/Ch1_1_27.sce
|
376aeb5e7a61740359003df62b66b13d9d809a37
|
[] |
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
| 194
|
sce
|
Ch1_1_27.sce
|
clc
disp("Example 1.27")
printf("\n")
disp("find the forward current in circuit of fig 1.22")
//given
V=9
Vd=0.3
R=3.3*10^3
//current
I=(V-Vd)/R
printf("forward current=%f Ampere",I)
|
4bb383e1620ea2a05f391c5275d1fd959a908682
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3733/CH34/EX34.9/Ex34_9.sce
|
b98e8b1744b276e1deb00ce141412a11b3252ab2
|
[] |
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
| 929
|
sce
|
Ex34_9.sce
|
// Example 34_9
clc;funcprot(0);
//Given data
L=60;// MW
L_0=0;// Zero load in MW
// I=5*10^6*(8+8*L+0.4L^2)
T_f=20;// Time in hours
T_0=4;// Time in hours
// Calculation
E_g=(T_f*L)+(T_0*0);// Total energy generated by the power plant during 24 hoursbin MWh
I_60=5*10^6*(8+(8*L)+(0.4*L^2))*20;// Input to the plant when the plant is running at full load in kJ
I_0=5*10^6*(8+(8*L_0)+(0.4*L_0^2))*20;// Input at no load in kJ
Ti=I_60+I_0;// Total input to the plant during 24 hours in kJ/day
Q=Ti/(E_g*10^3);// Average heat supplied per kWh generated in kJ/kWh
L_a=E_g/24;// Average load in MW
I_50=5*10^6*(8+(8*L_a)+(0.4*L_a^2))*24;// Heat supplied during 24 hours in kJ/day
Ns=Ti-I_50;// Net saving per day in kJ/day
S=Ns/(E_g*10^3);// Saving per kWh
printf('\nThe heat input per day to the power station=%0.5e kJ/day \nSaving per kWh=%0.0f kJ/kWh',I_50,S);
// The answer provided in the textbook is wrong
|
b49fcbee9df218cfc843904613e842783e3d5ac8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1658/CH18/EX18.5/Ex18_5.sce
|
41d17e7eb3b337e43da73890ae8455bbded2984f
|
[] |
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
| 259
|
sce
|
Ex18_5.sce
|
clc;
//e.g 18.5
Rb=400*10**3;
Vcc=20;
Rc=2*10**3;
Re=1*10**3;
beta=100;
Ib=Vcc/(Rb+(beta*Re));//saturation current
disp('mA',Ib*10**3,"Ib=");
Ic=beta*Ib;
disp('mA',Ic*10**3,"Ic=");
Vce=Vcc-(Ic*(Rc+Re));//cut-off voltage
disp('V',Vce*1,"Vce=");
|
ce6fd03c7b62f74147f86b45e9baf5bf10c75f54
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2672/CH2/EX2.11/Ex2_11.sce
|
e6361c0d1dd1a6e935e1dc65a60cffb5da8c1719
|
[] |
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
| 322
|
sce
|
Ex2_11.sce
|
//Ex_2_11
clc;
clear;
close;
format('v',6);
//given data :
lg=0.01/100;//m(airgap)
li=39.99/100;//m(mean length)
mur=2000;//relative permeability
mu0=4*%pi*10^-7;//permeability
N=1000;//turns
A=9/10000;//m^2
fi=1;//mWb
S=li/(mu0*mur*A)+lg/(mu0*A);//AT/Wb
I=fi*10^-3*S/N;//A
disp(I,"Current required(A)");
|
dbf23892d1d5b562cc1d296cebb2cd62276ee998
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1571/CH8/EX8.9/Chapter8_Example9.sce
|
005ca3e923891cef4771709bea4f586efd6b49d7
|
[] |
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
| 309
|
sce
|
Chapter8_Example9.sce
|
clc
clear
//INPUT
t1=400;//inital temperature in K
dv=2;//ratio of volumes final and inital
r=8.31*10^7;//universal gas constant in ergs/kg.K
//CALCULATIONS
w=r*t1*log(2);//work done in expanding isothermally in ergs
//OUTPUT
mprintf('the work done in expanding isothermally is %3.2f ergs',w)
|
c383f42f1b6a6e47e1bb4cab2fd7126b32003701
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1640/CH5/EX5.20/5_20.sce
|
0e6bebb230b74241491d0fe39f40559875c8ec0b
|
[] |
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
| 328
|
sce
|
5_20.sce
|
clc
//initialisation of variables
d= 2 //ft
l= 1000 //ft
f= 0.0075
H1= 20 //ft
A1= 100000 //ft^2
A2= 50000 //ft^2
g= 32.2 //ft/sec^2
//CALCULATIONS
h= 2*A1/A2
H2= H1-h
t= 2*A1*A2*sqrt(1.5+(4*f*l/2))*0.47/((A1+A2)*(%pi*d^2/4)*sqrt(2*g))/60
//RESULTS
printf ('Time taken to lower the level of water = %.f min ',t)
|
f94dab9b3ecefb6ad126f4202af9b2e23b778ace
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2837/CH22/EX22.1/Ex22_1.sce
|
bf9d8c1ee905e74264f4cfc98f6df83cdb050c2b
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 399
|
sce
|
Ex22_1.sce
|
clc
clear
//Initalization of variables
t1=45+460 //R
th=70+460 //R
t2=-200+460 //R
th2=100+460 //R
//calculations
cp1=t1/(th-t1)
cp2=th/(th-t1)
cp3=t2/(th2-t2)
cp4=th2/(th2-t2)
//results
printf("In case 1, Refrigerator cp = %.1f",cp1)
printf("\n In case 1, Heat pump cp = %.1f",cp2)
printf("\n In case 2, Refrigerator cp = %.3f",cp3)
printf("\n In case 2, Heat pump cp = %.3f",cp4)
|
184fadac7134b5f80722248f538622af9edcc028
|
6e8df5b4cc6a12833566b3b67b0160d1937be025
|
/Multimorphic_testing_data_code/code/scilab/coco/scripts/scilab/v2/script_compare_rank.sci
|
a4885556d00ac57731229f2674efa6036b605da6
|
[] |
no_license
|
templep/TSE_MM_test
|
2b2cc79b9e6d46a80bf692227f367438adeca3f3
|
4d3c08489c182b77418fc5d4e55377d5b68e8334
|
refs/heads/master
| 2020-03-22T22:01:12.897309
| 2019-06-13T07:50:42
| 2019-06-13T07:50:42
| 140,728,734
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,754
|
sci
|
script_compare_rank.sci
|
function data = load_rank(path,filename,score_idx)
//load file
all_data = csvRead(path+filename,",",".","string");
//concatenate name of technique (1st column) to the indexes to retrieve
score_idx = [1, score_idx];
//extract the correct columns for each row of the file
data=all_data(:,score_idx);
endfunction
function [score,relative_idx] = compare_ranks(init_rank,computed_rank)
score = 0;
relative_idx=[];
for i=1:size(init_rank,1)
//disp(init_rank(i,1));
idx = find(computed_rank(:,1) == init_rank(i,1));
//disp(idx);
relative_idx = [relative_idx;init_rank(i,1), string(i), string(idx)];
//score is higher than the real number of modif
score = score + abs(idx-i);
end
endfunction
function [score,relative_idx] = compare_ranks_spearman(init_rank,computed_rank)
score = 0;
relative_idx=[];
nb_elem = size(init_rank,1);
for i=1: nb_elem
//disp(init_rank(i,1));
idx = find(computed_rank(:,1) == init_rank(i,1));
//disp(idx);
relative_idx = [relative_idx;init_rank(i,1), string(i), string(idx)];
//score is higher than the real number of modif
score = score + (idx-i)*(idx-i);
end
score = 1-(6*score/(nb_elem*nb_elem*nb_elem - nb_elem));
endfunction
idx_col=[2];
rebuilt_rank = load_rank("../../../../../../results/coco/","ranking_reconstructed.csv",idx_col);
initial_rank = load_rank("../../../../../../results/coco/","original_ranking.csv",idx_col);
initial_rank(1,:) = [];
//[score,diff] = compare_ranks(initial_rank,rebuilt_rank);
[score,diff] = compare_ranks_spearman(initial_rank,rebuilt_rank);
disp(score);
|
e71fef3b6fe442e6248f528945ad22c92a19d658
|
25ec4bae7c1d991a8b4f36a96650a07061417648
|
/Exemplos/exemplo03AjusteRGB/verde.sce
|
1871f64050894f6dd78ae2a117f063bf218b7873
|
[] |
no_license
|
OtacilioNeto/EV3MicroPythonExamples
|
716f76e4179d98157577d68b116a33a078aed085
|
037af9585402fe294d3c82d3b7d88cb49bc26bcf
|
refs/heads/master
| 2023-06-08T19:34:49.916922
| 2023-06-02T13:24:10
| 2023-06-02T13:24:10
| 226,492,496
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 23,950
|
sce
|
verde.sce
|
// Red Green Blue Red Green Blue
verde = [
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 7;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 7;
3 19 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 7;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 7;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 19 15 2 14 7;
3 19 15 2 14 7;
3 19 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 16 2 14 7;
3 20 16 2 14 7;
3 20 16 2 14 7;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 7;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 7;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 7;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 15 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 7;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 7;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 7;
3 20 15 2 14 7;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 7;
3 20 16 2 14 7;
3 20 16 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 7;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 7;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 16 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 19 15 2 14 8;
3 19 15 2 14 8;
3 20 15 2 14 8;
3 20 15 2 14 8;
3 20 16 2 14 8;
];
|
a4e372988208d77058e62ebe4998b1745291c360
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2504/CH7/EX7.10/7_10.sce
|
79f22c8deea54ba0e6daf2ceee6530f3c04e0d11
|
[] |
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
| 606
|
sce
|
7_10.sce
|
clc
//initialisation of variables
clear
p2= 67.2 //lbf/in^2
p1= 63 //lbf/in62
r= 1.4
n= 0.6
T1= 870 //R
ma1= 0.8 //ft/sec
//CALCULATIONS
dt= (p2/p1)^((r-1)/r)-1
dt1= dt/n
T2= T1*(1+dt1)
Ts1= T1*(1+0.5*(r-1)*ma1^2)
ps1= p1*(1+0.5*(r-1)*ma1^2)^(r/(r-1))
ps2= p2*(Ts1/T2)^(r/(r-1))
dp= ps1-ps2
//RESULTS
printf ('dT = %.5f ',dt)
printf ('\n dT1 = %.5f ',dt1)
printf ('\n Temperature = %.f R',T2)
printf ('\n Temperature = %.1f R',Ts1)
printf ('\n Pressure = %.1f lbf/in^2',ps1)
printf ('\n Pressure = %.1f lbf/in^2',ps2)
printf ('\n pressure difference = %.1f lbf/in^2',dp)
|
5460c436a8c8e7c62170e8f1837f51f09218ff23
|
c34cb6f5448d3c4a59e4409e34656916c7b5cac0
|
/Average(Structure).sce
|
64b993e2c32413ee3e3af8dab30f1fd7ecb648dc
|
[] |
no_license
|
ans-sharma/scilab
|
b2b0af0d038998b81943ff6fdf06d6e1c434b23d
|
e8b8a43d0d1d8bed3112abd985ec07aa495dd16d
|
refs/heads/master
| 2022-12-15T03:39:00.434615
| 2020-09-09T21:37:32
| 2020-09-09T21:37:32
| 291,638,062
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 179
|
sce
|
Average(Structure).sce
|
a.name = "Anshuman"
a.age = 20
a.marks = 299
b.name = "Unknown"
b.age = 20
b.marks = 150
c.name = "Unknown"
c.age = 20
c.marks = 200
disp((a.marks+b.marks+c.marks)/3)
|
41887fbfe93197f4ae8c9a203cf9f62f3921e1b9
|
ab0891df3df62a84b3bc60ee178e2d84b0d692c5
|
/Geometry_Processing_Toolbox/macros/reorient_facets.sci
|
59fbdc4a2ecb16dd5e436aef0c2d101efd8d1471
|
[
"MIT"
] |
permissive
|
sidgairo18/SCILAB_MEX_TOOLBOX
|
6b36c8b5dd21bb15d942a283ebfe2366a7ac02ec
|
fc679f6d226c03b992b632823a5e57abea05cefa
|
refs/heads/master
| 2020-03-19T04:03:55.721880
| 2018-08-14T11:22:24
| 2018-08-14T11:22:24
| 135,791,680
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 824
|
sci
|
reorient_facets.sci
|
% REORIENT_FACETS Reorient faces of a triangle mesh (V,F) so that the left-hand
% rule normal of each face (consistently) points outward.
%
% [FF,I] = reorient_facets(V,F)
% [FF,I] = reorient_facets(V,F,'ParameterName',ParameterValue, ...)
%
% Inputs:
% V #V by 3 list of vertex positions
% F #F by 3 list of triangle indicies into V
% Optional:
% 'NumRays' followed by total number of rays {#F*100}
% 'MinRays' followed by minimum number of rays per patch/face {10}
% 'Facetwise' followed by whether each facet should be considered
% independently, could lead to inconsistent orientation of manifoldly
% neighboring facets {false}
% 'UseParity' Whether to use parity(?) {false}
% Outputs:
% FF #F by 3 list of reoriented facets
% I #F list of whether each face was flipped
%
|
40a68e0321b0f2dc31f8236de2864bf15a196f35
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/503/CH7/EX7.57/ch7_57.sci
|
b971e52e0d87a33555b0005f2615362bc8645b90
|
[] |
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
| 747
|
sci
|
ch7_57.sci
|
//to calculate m/c eff as a generator and max eff when generating and motoring.
clc;
Pop=10*1000;
Vt=250;
Ra=.8;
Rf=275;
Ia=3.91;
Psh=Vt^2/Rf;
Prot=Vt*Ia-Ia^2*Ra;disp(Prot,'rotational loss(W)');
I1=Pop/Vt;
If=Vt/Rf;
Ia=I1+If;
Ploss=Prot+Psh+Ia^2*Ra;
Eff_gen=(1-Ploss/(Ploss+Pop))*100;disp(Eff_gen,'generator eff(%)');
Ia=I1-If;
Ploss=Prot+Psh+Ia^2*Ra;
Eff_motor=(1-Ploss/(Pop))*100;disp(Eff_motor,'motor eff(%)');
Ia=sqrt((Prot+Psh)/Ra);
Ploss_tot=2*(Prot+Psh);disp(Ploss_tot,'total loss(W)');
I1=Ia-If;
Pout=Vt*I1;
Eff_gen_max=((1-Ploss_tot/(Ploss_tot+Pout)))*100;
disp(Eff_gen_max,'max generator eff(%)');
I1=Ia+If;
Pin=Vt*I1;
Eff_motor_max=((1-Ploss_tot/(Pin)))*100;disp(Eff_motor_max,'max motor eff(%)');
|
ba5575763e0f65ea37890913628ddf7f3c5505a6
|
e20b143bd16a6a60520c5d3f6c30af9356cc0aa2
|
/macros/update_compared.sci
|
516b5ae0f94d0945e55da080d010c685097aaf70
|
[] |
no_license
|
slevin48/covid
|
2c4806c1d1d91b2196f3086e2af7c69c420fb4db
|
c482d908ae58b82558f338b63020845cefc43742
|
refs/heads/master
| 2022-05-28T10:40:56.271120
| 2020-04-29T16:08:27
| 2020-04-29T16:08:27
| 258,529,494
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 650
|
sci
|
update_compared.sci
|
function update_compared()
a=get("cases_plot_frame");
[header, data] = importdata(covid_getpath()+"\data\time_series_covid19_confirmed_global.csv");
confirmed = strtod(data(:,5:$));
country = data(:,2);
// state = data(:,1);
c = get("country");
my = confirmed(country == c.string(c.value),:);
cc = get("country_compared");
my2 = confirmed(country == cc.string(cc.value),:);
// x = 1:size(my2,'*');
// plot(x,my,x,my2);
// xticks2string(header(5:$),10)
// xtitle("Covid-19 Confirmed Cases in Malaysia & Singapore","Date","Cases")
// xgrid()
// legend("Malaysia","Singapore",2);
endfunction
|
0b9e9685a9d700a5867c0f748ba0b7d828fdabbb
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2708/CH1/EX1.6/ex_1_6.sce
|
b043fb05c60a7f1881963100c477a5c3ab8aa7b4
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 404
|
sce
|
ex_1_6.sce
|
//Example 1.6 // fringe width
clc;
//given data :
a=0.10;// distance between source & prism in m
c=1;// distance between prism & screen in m
u=1.5;//referactive index of bi-prism
al=%pi/180;//angle in radian
d=2*a*(u-1)*al;// distance between slits in m
w=5900D-10;// wavelength in m
D=a+c;//distance between source and screen in m
b=D*w/d;//fringes width
disp(b,"width of fringes in meter")
|
1b0d81cf7e1d0a851cf5105990afae2f57046057
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1397/CH1/EX1.24/1_24.sce
|
6c1bf33cd9c4506ff587417c7fe845c957dc05c8
|
[] |
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
| 328
|
sce
|
1_24.sce
|
//clc();
clear;
//To determine the angular seperation
lambda=600*10^(-9); //wavelength of light in metres
a=1*10^(-6); //slit width in metres
n=1;
theta=asind((n*lambda)/a);
printf("the angular seperation between the first order minima and central maxima of either side is %f degrees",theta);
|
d3802c2294d723c51f009f28bfbeb102cca8bfa6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1658/CH16/EX16.1/Ex16_1.sce
|
999e34ffaf95bed6c798f46c870e157e3ba2feb7
|
[] |
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
| 197
|
sce
|
Ex16_1.sce
|
clc;
//e.g 16.1
V1=230;
//a=(N2/N1)
b=(1/10);
V2=V1*b;
disp('V',V2*1,"V2=");
Vm=sqrt(2)*V2;
disp('V',Vm*1,"Vm=");
Vdc=0.318*Vm;
disp('V',Vdc*1,"Vdc=");
PIV=Vm;
disp('V',PIV*1,"PIV=");
|
073e363de202d53b5f3dea265d2ad7f1072258f7
|
377a111fb7585caf110377625ad0e261a44e93ed
|
/herbie/writting/publish/codes/lockwood/aim_optimization/Lockwood/PATO_XY/tst/input.tst
|
6419add57304b43a1ae83bd2fc48700f37effc22
|
[] |
no_license
|
gasduster99/theses
|
ba385499ea0a502b9067c243f7100d82ff1ef4ce
|
9c5f8b5d7564292e2e36547ed8d5563a8639f158
|
refs/heads/master
| 2023-08-25T18:14:09.741032
| 2023-08-22T05:33:06
| 2023-08-22T05:33:06
| 217,375,576
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 120
|
tst
|
input.tst
|
18
353
1003
13526
2472
777
600
2670
3340
4430
5130
4770
4500
1520
1000
5020
3715
4170
4585
|
1d09ea89650776b6aa2afaf5f4f75454145c5ac6
|
8409f47affbce56ae5b00d9f697b52364fdcec7e
|
/boolean-logic/Or8Way.tst
|
954b161c33ec77443b9bb750fa6e56fb34dd7bf4
|
[] |
no_license
|
oleiade/Bam
|
1609eca5f6247c10cef17375704547282537d1e0
|
84fcab3751b5b344afacdd3647e8071616f9f0b6
|
refs/heads/master
| 2021-01-19T22:33:50.345657
| 2013-10-26T16:05:22
| 2013-10-26T16:05:22
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 177
|
tst
|
Or8Way.tst
|
load Or8Way.hdl,
output-file Or8Way.out,
output-list in%B1.8.1 out%B1.3.1;
set in %B00000000,
eval,
output;
set in %B11111111,
eval,
output;
set in %B00000001,
eval,
output;
|
d7427f0e92f49e746c60155f85d6fa7cee1435e0
|
3c47dba28e5d43bda9b77dca3b741855c25d4802
|
/microdaq/macros/microdaq_blocks/mdaq_param_sim.sci
|
d42e55f668fe3a600323b00c6430442486ca0e6e
|
[
"BSD-3-Clause"
] |
permissive
|
microdaq/Scilab
|
78dd3b4a891e39ec20ebc4e9b77572fd12c90947
|
ce0baa6e6a1b56347c2fda5583fb1ccdb120afaf
|
refs/heads/master
| 2021-09-29T11:55:21.963637
| 2019-10-18T09:47:29
| 2019-10-18T09:47:29
| 35,049,912
| 6
| 3
|
BSD-3-Clause
| 2019-10-18T09:47:30
| 2015-05-04T17:48:48
|
Scilab
|
UTF-8
|
Scilab
| false
| false
| 1,174
|
sci
|
mdaq_param_sim.sci
|
function block=mdaq_param_sim(block,flag)
select flag
case -5 // Error
case 0 // Derivative State Update
case 1 // Output Update
global %microdaq;
if %microdaq.dsp_loaded & %microdaq.private.has_mdaq_param_sim then
if %microdaq.private.connection_id > -1 then
len = size(block.inptr(1), "*");
result = call("sci_mlink_dsp_param",..
%microdaq.private.connection_id, 1, 'i',..
block.ipar(1), 2, 'i',..
block.inptr(1), 3, 'd',..
len, 4, 'i',..
scicos_time(), 5, 'r',..
"out",..
[1,1], 6, 'i');
else
disp("Unable to write data");
end
else
// Simply copy input to output
block.outptr(1) = block.inptr(1);
end
case 2 // State Update
case 3 // OutputEventTiming
case 4 // Initialization
case 5 // Ending
case 6 // Re-Initialisation
case 9 // ZeroCrossing
else // Unknown flag
end
endfunction
|
a3b06d87c6e755528e3e6a4a6c7e8c12d589ef5a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1016/CH16/EX16.4/ex16_4.sce
|
e7ac6dd917d177cf794cea7ab4f5f85db0ad77c3
|
[] |
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
| 349
|
sce
|
ex16_4.sce
|
clc;clear;
//Example 16.4
//given data
mo=9.1*10^-31;//mass of electron in kg
m=1.67*10^-27;//mass of proton in kg
c=3*10^8;//speed of light in m/s
E=1;//given energy in MeV
//calculations
Eo=mo*c^2/(1.6*10^-13);
mbymo=1+(E/Eo);
disp(mbymo,'Ratio for electron');
Eo=m*c^2/(1.6*10^-13);
mbymo=1+(E/Eo);
disp(mbymo,'Ratio for proton')
|
be34dee1833b82cc21776296fd609cd8f73ee6c6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1319/CH1/EX1.24/1_24.sce
|
4c51153cd6ea74046fec899d3cbad2a9a14d9615
|
[] |
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
| 530
|
sce
|
1_24.sce
|
//Find the number of ampere turns
clc;
clear;
l=30*(10^-2); // Length of an iron path
lag=2*(10^-3);//Length of air gap
B=0.8; // Flux density
H=700;
m0=(4*%pi)*(10^-7);
mr=B/(m0*H);
A=poly(0,'A');//Area of the iron path
R1=l/(m0*mr*A);
R2=lag/(m0*A);
R=R1+R2;
phi=B*A;//Flux
NI=phi*R;
//To find numerical value
y=NI-A;
NI=roots(y(2));
//The answer in the textbook contains Round off error
printf('The number of turns necessary to produce a flux density of 0.8T in the air gap = %g AT\n',NI)
|
68d72be98a11b82050cd9f1df17a0d0349486402
|
416d7bf3844e7344d69d8e39ef500daf02ef1a78
|
/Sprint_2_Test/test_float/short/case_4.tst
|
29bdaaf4bf2bd0db566eb22bd2269399e6c084ed
|
[] |
no_license
|
jcmanke/SoftEng
|
760496ccb8524250557f24ed6e448e9e1ff1f75e
|
cc5b63747960f25bef316b0de798be5a2fb514c6
|
refs/heads/master
| 2021-05-01T18:40:34.492776
| 2014-04-30T17:16:06
| 2014-04-30T17:16:06
| 16,333,792
| 0
| 0
| null | 2014-02-06T19:19:45
| 2014-01-29T02:57:43
| null |
UTF-8
|
Scilab
| false
| false
| 10
|
tst
|
case_4.tst
|
12.6
12.8
|
9398098f661ac2f18ac4f0af1b66ca62d7cc5251
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1523/CH4/EX4.79/ex4_79.sce
|
0ad640f32dbe47fadedecc9625dbc25e6ac97736
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 416
|
sce
|
ex4_79.sce
|
//AC Circuits : example 4.79 :(pg 4.64)
R=10;
L=0.01;
C=100*10^-6;
f0=(1/(2*%pi*sqrt(L*C)));
BW=(R/(2*%pi*L));
f1=f0-(BW/2);
f2=f0+(BW/2);
printf("\nR=10 Ohm \nL=0.01H \nC=100uF");
printf("\nf0=1/2*pi*sqrt(L*C)=%.2f Hz",f0);//resonant frequency
printf("\nBW=R/2*pi*L =%.2f Hz",BW); //bandwidth
printf("\nf1=f0-BW/2 \n=%.2f Hz",f1); //lower frequency
printf("\nf2=f0+BW/2 =%.2f Hz",f2); //higher frequency
|
dadba7194912cdf3939899bddb136773bc0045e6
|
1b969fbb81566edd3ef2887c98b61d98b380afd4
|
/Rez/bivariate-lcmsr-post_mi/bfas_ea_mvi/~BivLCM-SR-bfas_ea_mvi-PLin-VLin.tst
|
3ac1b5e8649671b860cf95dac791f61270839cb0
|
[] |
no_license
|
psdlab/life-in-time-values-and-personality
|
35fbf5bbe4edd54b429a934caf289fbb0edfefee
|
7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e
|
refs/heads/master
| 2020-03-24T22:08:27.964205
| 2019-03-04T17:03:26
| 2019-03-04T17:03:26
| 143,070,821
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 11,974
|
tst
|
~BivLCM-SR-bfas_ea_mvi-PLin-VLin.tst
|
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM.
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 0.413318D+00
2 -0.622571D-02 0.298177D-02
3 0.179493D-02 0.436059D-03 0.671559D-01
4 0.811410D-03 0.639832D-05 -0.953449D-03 0.531762D-03
5 0.908143D-03 0.308899D-04 0.730916D-03 -0.215105D-04 0.435133D-02
6 0.283706D-02 -0.237020D-03 0.137676D-02 -0.387062D-04 -0.660619D-05
7 0.437219D-03 -0.375718D-04 0.267361D-03 -0.460212D-05 0.468948D-03
8 0.717022D-03 0.555490D-04 -0.488479D-03 0.750949D-05 -0.124663D-03
9 -0.405115D+00 0.623336D-02 0.116230D+00 -0.645405D-02 0.204718D+00
10 -0.637798D-01 -0.544142D-02 0.262427D-01 -0.588710D-03 0.232216D+00
11 -0.983797D-01 0.667865D-02 -0.197744D-01 0.403488D-02 0.164265D-01
12 0.211986D-01 -0.122078D-03 -0.632296D-01 0.566708D-02 -0.317249D-02
13 0.801220D-01 -0.608579D-02 0.105720D-01 -0.964555D-04 0.266753D-01
14 0.740366D-02 -0.899828D-03 0.293984D-02 0.101317D-03 -0.173322D-02
15 -0.373682D+01 0.532336D-02 -0.213444D+00 -0.185286D-01 -0.198111D+00
16 0.188237D-02 -0.120578D-01 -0.831330D-02 0.569688D-04 0.176550D-02
17 0.359794D-02 -0.340192D-04 0.160969D-02 0.118174D-03 -0.105469D-02
18 0.984294D-01 -0.931575D-02 -0.584285D-01 -0.564712D-03 -0.335914D-01
19 -0.416513D-01 0.421336D-02 0.202061D-01 -0.188120D-02 -0.386988D-03
20 -0.515218D-01 0.243684D-02 0.138557D+00 -0.290421D-03 -0.663779D-02
21 0.355713D-01 -0.470335D-02 -0.210893D-01 0.113846D-02 0.163266D-02
22 -0.109351D-02 -0.140156D-04 -0.395391D-03 -0.411385D-04 -0.138525D-03
23 0.101344D-02 -0.559529D-03 0.294445D-02 -0.379439D-03 0.592712D-03
24 -0.573749D-03 -0.249643D-04 -0.113127D-02 -0.276458D-04 -0.526556D-04
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 0.593805D-02
7 0.653730D-03 0.421668D-03
8 0.511739D-03 0.311434D-04 0.229697D-02
9 0.309508D-01 0.302541D-01 0.594274D-02 0.607365D+02
10 0.351062D-02 0.313032D-01 0.911754D-02 0.114566D+02 0.247181D+02
11 0.328667D-01 0.695384D-02 0.225239D-02 0.160851D+01 0.105436D+01
12 0.855740D-02 -0.148393D-02 0.221662D-01 -0.600295D+00 0.891575D+00
13 0.400741D-01 0.145251D-01 0.685753D-02 0.209391D+01 0.251418D+01
14 0.190474D-02 0.181293D-03 0.242446D-01 0.134076D+00 0.474878D+00
15 -0.763363D-01 -0.462490D-01 -0.409960D-02 -0.170713D+02 -0.171548D+02
16 -0.442459D-02 -0.100293D-03 -0.171520D-02 0.100623D+01 0.208309D+00
17 0.663534D-03 0.111052D-03 0.274672D-04 -0.180565D+00 -0.649149D-01
18 -0.212772D-01 -0.703672D-02 -0.749875D-02 -0.230793D+01 -0.191601D+01
19 -0.270358D-02 0.253458D-02 -0.306331D-02 0.511337D+00 -0.290370D+00
20 -0.103070D-01 -0.511984D-02 -0.143496D-01 -0.121330D+01 -0.302042D+00
21 0.304617D-02 -0.203540D-02 0.335635D-02 -0.581587D+00 0.278567D+00
22 -0.332109D-03 -0.114865D-03 0.195594D-04 -0.633102D-02 -0.830320D-02
23 0.350962D-03 0.144970D-03 -0.851546D-05 0.369299D-01 0.450012D-01
24 0.146683D-04 -0.154338D-04 -0.820266D-04 0.194694D-02 -0.994915D-02
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 0.493758D+01
12 0.849637D+00 0.315285D+01
13 -0.240262D+00 0.977416D-01 0.178651D+01
14 -0.941948D-01 0.106516D+00 0.349285D+00 0.102826D+01
15 -0.256427D+01 -0.461102D+00 -0.304649D+01 0.426765D+00 0.458051D+03
16 0.104712D-01 -0.195854D-01 -0.122321D-02 -0.439473D-01 0.210368D+01
17 0.914155D-02 0.483394D-02 0.278341D-02 -0.161818D-02 -0.189587D+01
18 -0.911806D+00 -0.249274D+00 -0.432802D+00 -0.386590D-01 0.923646D+01
19 -0.638827D-01 -0.198900D+00 -0.706852D-01 -0.496766D-01 -0.764697D+00
20 -0.208852D+00 0.803051D-01 -0.471922D+00 -0.349112D+00 0.615695D+01
21 0.128722D+00 0.246953D+00 0.992007D-01 0.545362D-01 0.975045D+00
22 -0.753955D-02 0.104072D-02 -0.532627D-02 0.435355D-04 -0.371497D-01
23 0.684782D-02 -0.143888D-01 0.411166D-02 0.525595D-02 0.513210D-01
24 -0.151506D-02 -0.209576D-02 0.524873D-03 -0.151335D-02 -0.331942D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 0.775274D+00
17 -0.620405D-01 0.225284D-01
18 0.987527D-02 -0.528318D-01 0.427305D+02
19 -0.479820D-01 0.721071D-02 -0.323037D+00 0.811317D+00
20 -0.126899D-01 -0.184984D-01 0.369313D+01 -0.997919D-01 0.124646D+02
21 0.330967D-01 -0.490324D-02 0.807832D+00 -0.695977D+00 0.814709D-01
22 0.193853D-02 0.300597D-03 -0.189752D+00 -0.166070D-02 -0.133266D-01
23 0.486809D-02 -0.406827D-03 0.205478D-01 0.175072D-01 0.106079D+00
24 0.240442D-03 0.282034D-03 -0.189188D-01 -0.153956D-03 -0.601471D-01
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 0.868390D+00
22 -0.958643D-02 0.219351D-02
23 -0.949463D-02 -0.422727D-03 0.210264D-01
24 -0.589750D-03 0.159277D-03 -0.188740D-02 0.654445D-03
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
1 2 3 4 5
________ ________ ________ ________ ________
1 1.000
2 -0.177 1.000
3 0.011 0.031 1.000
4 0.055 0.005 -0.160 1.000
5 0.021 0.009 0.043 -0.014 1.000
6 0.057 -0.056 0.069 -0.022 -0.001
7 0.033 -0.034 0.050 -0.010 0.346
8 0.023 0.021 -0.039 0.007 -0.039
9 -0.081 0.015 0.058 -0.036 0.398
10 -0.020 -0.020 0.020 -0.005 0.708
11 -0.069 0.055 -0.034 0.079 0.112
12 0.019 -0.001 -0.137 0.138 -0.027
13 0.093 -0.083 0.031 -0.003 0.303
14 0.011 -0.016 0.011 0.004 -0.026
15 -0.272 0.005 -0.038 -0.038 -0.140
16 0.003 -0.251 -0.036 0.003 0.030
17 0.037 -0.004 0.041 0.034 -0.107
18 0.023 -0.026 -0.034 -0.004 -0.078
19 -0.072 0.086 0.087 -0.091 -0.007
20 -0.023 0.013 0.151 -0.004 -0.029
21 0.059 -0.092 -0.087 0.053 0.027
22 -0.036 -0.005 -0.033 -0.038 -0.045
23 0.011 -0.071 0.078 -0.113 0.062
24 -0.035 -0.018 -0.171 -0.047 -0.031
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
6 7 8 9 10
________ ________ ________ ________ ________
6 1.000
7 0.413 1.000
8 0.139 0.032 1.000
9 0.052 0.189 0.016 1.000
10 0.009 0.307 0.038 0.296 1.000
11 0.192 0.152 0.021 0.093 0.095
12 0.063 -0.041 0.260 -0.043 0.101
13 0.389 0.529 0.107 0.201 0.378
14 0.024 0.009 0.499 0.017 0.094
15 -0.046 -0.105 -0.004 -0.102 -0.161
16 -0.065 -0.006 -0.041 0.147 0.048
17 0.057 0.036 0.004 -0.154 -0.087
18 -0.042 -0.052 -0.024 -0.045 -0.059
19 -0.039 0.137 -0.071 0.073 -0.065
20 -0.038 -0.071 -0.085 -0.044 -0.017
21 0.042 -0.106 0.075 -0.080 0.060
22 -0.092 -0.119 0.009 -0.017 -0.036
23 0.031 0.049 -0.001 0.033 0.062
24 0.007 -0.029 -0.067 0.010 -0.078
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
11 12 13 14 15
________ ________ ________ ________ ________
11 1.000
12 0.215 1.000
13 -0.081 0.041 1.000
14 -0.042 0.059 0.258 1.000
15 -0.054 -0.012 -0.106 0.020 1.000
16 0.005 -0.013 -0.001 -0.049 0.112
17 0.027 0.018 0.014 -0.011 -0.590
18 -0.063 -0.021 -0.050 -0.006 0.066
19 -0.032 -0.124 -0.059 -0.054 -0.040
20 -0.027 0.013 -0.100 -0.098 0.081
21 0.062 0.149 0.080 0.058 0.049
22 -0.072 0.013 -0.085 0.001 -0.037
23 0.021 -0.056 0.021 0.036 0.017
24 -0.027 -0.046 0.015 -0.058 -0.061
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
16 17 18 19 20
________ ________ ________ ________ ________
16 1.000
17 -0.469 1.000
18 0.002 -0.054 1.000
19 -0.061 0.053 -0.055 1.000
20 -0.004 -0.035 0.160 -0.031 1.000
21 0.040 -0.035 0.133 -0.829 0.025
22 0.047 0.043 -0.620 -0.039 -0.081
23 0.038 -0.019 0.022 0.134 0.207
24 0.011 0.073 -0.113 -0.007 -0.666
ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES
21 22 23 24
________ ________ ________ ________
21 1.000
22 -0.220 1.000
23 -0.070 -0.062 1.000
24 -0.025 0.133 -0.509 1.000
|
226a07826e3e3d85f7f1edf0cd95014a8dd7ffab
|
c9493527d8fe51406ce7257c57a3db90b61f543e
|
/ismaxphase.sci
|
9cacc8da2af586b1082bfaf010d5db4be2722c04
|
[] |
no_license
|
gmode22/Fossee_Ganesh_ee14b083
|
a5820f7f76ae8084b74e1f34ad056655e5ea5092
|
5821750a3c2f52142a266acdad86d6839266e718
|
refs/heads/master
| 2021-01-21T13:57:56.439805
| 2016-05-25T05:19:23
| 2016-05-25T05:19:23
| 54,862,441
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 4,345
|
sci
|
ismaxphase.sci
|
//Name: Ganesh Mode
//Roll no.: ee14b083
// IIT Madras
// Input arguments : 1. [n,d] or sos
// n,d =numerator and denominator of a filter
// sos = second order system array
// with size(sos)=(k,6) where k>=2;
//
// Output arguments : 1. y =flag
// flag that tells whether system is maxphase or not
// possible output 0 or 1;
//
// resource: 1. 'http://in.mathworks.com/help/signal/ref/ismaxphase.html'
// 2. Digital signal processing course In IIT Madras EE2004
//
function y = ismaxphase (varargin)
if(argn(2)>2) then // checking input is SOS or n,d
disp('too many args');
return;
elseif(argn(2)==0) then
disp('give input value');
return;
else
if(argn(2)<2) then // if SOS then DO the Following
nc=size(varargin(1),"c");
nr=size(varargin(1),"r");
if(nc==6) then //checking arguments are of correct dimension or not
sos=varargin(1);
m=1:1:nc;// Array to store output of each sos
for i=1:1:nr
sosn=sos(i,1:3);
sosd=sos(i,4:6);
if(sosd==0) then//checking any of the sosd==0
disp('the value of d is inncorect');
y=0;
return;
else
if(sosn==0) then // any of numerator is sosn==0
y=0;
return;
else
rn=abs(roots(sosn)); // finding roots
rd=abs(roots(sosd));
//for un-stable system
[r1,c1]=size(rd);
check1=ones(r1,c1); // a matrix of ones
[r2,c2]=size(rn);
check2=ones(r2,c2);
if(sum(rd>check1)) then//checking poles are inside unit circle or not
m(i)=0;
//for stable system
else
if(sum(rn<=check2)==0) then//checking zeros are outside unit circle or not
m(i)=1;//If one SOS(i) ismaxphase
else
m(i)=0;
end
end
end
end
end
if(min(m)==0) then
y=0;//checking any m(i)==0 implies is not max phase
return;
else
y=1;
return;
end
else
disp('error');
return;
end
else /// If two arguments are there n and d
if(varargin(2)==0) then
disp('the value of d is inncorect');
y=0;
return;
else
if(varargin(1)==0) then
y=0;
return;
else
n=varargin(1);
d=varargin(2);
rn=abs(roots(n));
rd=abs(roots(d));
//for un-stable system
[r1,c1]=size(rd);
check1=ones(r1,c1);
[r2,c2]=size(rn);
check2=ones(r2,c2);
if(sum(rd>check1)) then//checking poles are inside unit circle or not
y=0;
return;
//for stable system
else
if(sum(rn<=check2)==0) then//checking zeros are outside unit circle or not
y=1;
return;
else
y=0;
return;
end
end
end
end
end
end
endfunction
|
a2038e31de40168b3ddd05354952632b22736440
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2489/CH16/EX16.1/16_1.sce
|
fd365308f6c58fc04d1265b04740a15053151489
|
[] |
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
| 191
|
sce
|
16_1.sce
|
clc
//Intitalisation of variables
clear
c= 0.01 //M
T= 25 //C
kw= 1.01*10^-14
ka= 1.75*10^-5
//CALCULATIONS
x= sqrt(kw/(ka*c))
//RESULTS
printf ('Degree of hydrolysis = %.1e ',x)
|
85acd2bbc745878924a277d89dad4bb0331662d5
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3637/CH2/EX2.1/Ex2_1.sce
|
fd8b8200a8ecda90262ca51c7e024a8f82417882
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 358
|
sce
|
Ex2_1.sce
|
//problem 1 pagenumber 2.86
//given
rf=10*10^3;//ohm
//vo=0.1v1+v2+10v3; 1
//determine r1,r1,r3
r1=rf/0.1;//from 1
r2=rf/1;//from 1
r3=rf/10;//from 1
format(6);
disp('R1 = '+string(r1/10^3)+' Kohm');
disp('R2 = '+string(r2/10^3)+' Kohm');
disp('R3 = '+string(r3/10^3)+' Kohm');
disp('Rf = '+string(rf/10^3)+' Kohm');
|
efa590f3f2361f5afb609f268274e15218688912
|
f542bc49c4d04b47d19c88e7c89d5db60922e34e
|
/PresentationFiles_Subjects/CONT/UW80JVR/ATWM1_Localizer_MRI_UW80JVR/ATWM1_Localizer_MRI.sce
|
ffea566ba9986d0a288366f3b0741b1b5cdf8ebd
|
[] |
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
| 40,042
|
sce
|
ATWM1_Localizer_MRI.sce
|
# ATWM1_MRI_Localizer
scenario = "ATWM1_Localizer_MRI";
scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
#scenario_type = trials;
scan_period = 2000; # TR
pulses_per_scan = 1;
pulse_code = 1;
#pulse_width=6;
default_monitor_sounds = false;
active_buttons = 1;
response_matching = simple_matching;
button_codes = 10;
default_font_size = 28;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
#write_codes=true;
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;
bitmap {filename = "fixation_cross_black.bmp";} fixation_cross_black;
bitmap {filename = "blank.bmp";} blank;
bitmap {filename = "localizer.bmp";} localizer;
bitmap {filename = "localizer_inv.bmp";} localizer_inv;
bitmap {filename = "localizer_target.bmp";} localizer_target;
sound { wavefile { filename = "FeedbackSound_NoResponse.wav"; }; } sound_no_response;
sound { wavefile { filename = "FeedbackSound_Correct.wav"; }; } sound_correct;
sound { wavefile { filename = "FeedbackSound_Incorrect.wav"; }; } sound_incorrect;
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;
# 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";
};
TEMPLATE "ATWM1_Localizer_MRI.tem" {
trigger_volume intertrial_interval single_stimulus_presentation_time trl_duration stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 stim_enc_target1 stim_enc_target2 stim_enc_target3 stim_enc_target4 control_flicker_index trial_code retr_code posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4;
6 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "01_4_Objects_Pos2_DefaultTrial" "Localizer_01_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
7 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "02_4_Objects_Pos3_DefaultTrial" "Localizer_02_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
8 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "03_4_Objects_Pos1_DefaultTrial" "Localizer_03_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
9 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 12 "04_4_Objects_Pos4_TargetTrial" "Localizer_04_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
10 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "05_4_Objects_Pos3_DefaultTrial" "Localizer_05_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
11 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "06_4_Objects_Pos1_DefaultTrial" "Localizer_06_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
12 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 4 "07_4_Objects_Pos2_TargetTrial" "Localizer_07_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
13 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "08_4_Objects_Pos4_DefaultTrial" "Localizer_08_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
14 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "09_4_Objects_Pos3_DefaultTrial" "Localizer_09_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
15 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "10_4_Objects_Pos1_DefaultTrial" "Localizer_10_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
16 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "11_4_Objects_Pos2_DefaultTrial" "Localizer_11_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
17 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 12 "12_4_Objects_Pos4_TargetTrial" "Localizer_12_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
19 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "13_4_Objects_Pos1_DefaultTrial" "Localizer_13_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
20 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 10 "14_4_Objects_Pos3_TargetTrial" "Localizer_14_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
21 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "15_4_Objects_Pos4_DefaultTrial" "Localizer_15_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
22 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "16_4_Objects_Pos2_DefaultTrial" "Localizer_16_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
23 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "17_4_Objects_Pos3_DefaultTrial" "Localizer_17_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
24 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 8 "18_4_Objects_Pos1_TargetTrial" "Localizer_18_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
25 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "19_4_Objects_Pos2_DefaultTrial" "Localizer_19_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
26 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "20_4_Objects_Pos4_DefaultTrial" "Localizer_20_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
27 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "21_4_Objects_Pos2_DefaultTrial" "Localizer_21_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
28 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 10 "22_4_Objects_Pos4_TargetTrial" "Localizer_22_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
30 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "23_4_Objects_Pos3_DefaultTrial" "Localizer_23_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
31 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "24_4_Objects_Pos1_DefaultTrial" "Localizer_24_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
32 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "25_4_Objects_Pos3_DefaultTrial" "Localizer_25_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
33 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "26_4_Objects_Pos2_DefaultTrial" "Localizer_26_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
34 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 6 "27_4_Objects_Pos1_TargetTrial" "Localizer_27_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
35 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "28_4_Objects_Pos4_DefaultTrial" "Localizer_28_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
36 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "29_4_Objects_Pos1_DefaultTrial" "Localizer_29_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
37 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "30_4_Objects_Pos3_DefaultTrial" "Localizer_30_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
38 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "31_4_Objects_Pos4_DefaultTrial" "Localizer_31_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
39 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 4 "32_4_Objects_Pos2_TargetTrial" "Localizer_32_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
40 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "33_4_Objects_Pos3_DefaultTrial" "Localizer_33_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
41 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "34_4_Objects_Pos1_DefaultTrial" "Localizer_34_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
42 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "35_4_Objects_Pos2_DefaultTrial" "Localizer_35_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
44 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 12 "36_4_Objects_Pos4_TargetTrial" "Localizer_36_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
45 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "37_4_Objects_Pos3_DefaultTrial" "Localizer_37_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
46 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "38_4_Objects_Pos4_DefaultTrial" "Localizer_38_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
47 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "39_4_Objects_Pos1_DefaultTrial" "Localizer_39_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
48 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 8 "40_4_Objects_Pos2_TargetTrial" "Localizer_40_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
49 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "41_4_Objects_Pos4_DefaultTrial" "Localizer_41_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
50 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "42_4_Objects_Pos1_DefaultTrial" "Localizer_42_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
51 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "43_4_Objects_Pos2_TargetTrial" "Localizer_43_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
52 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "44_4_Objects_Pos3_DefaultTrial" "Localizer_44_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
53 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "45_4_Objects_Pos4_DefaultTrial" "Localizer_45_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
54 1950 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "46_4_Objects_Pos3_DefaultTrial" "Localizer_46_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
56 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "47_4_Objects_Pos2_DefaultTrial" "Localizer_47_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
57 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 12 "48_4_Objects_Pos1_TargetTrial" "Localizer_48_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
58 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "49_4_Objects_Pos3_DefaultTrial" "Localizer_49_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
59 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "50_4_Objects_Pos2_DefaultTrial" "Localizer_50_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
60 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "51_4_Objects_Pos4_DefaultTrial" "Localizer_51_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
61 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 12 "52_4_Objects_Pos1_TargetTrial" "Localizer_52_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
62 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "53_4_Objects_Pos4_DefaultTrial" "Localizer_53_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
63 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "54_4_Objects_Pos2_DefaultTrial" "Localizer_54_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
64 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "55_4_Objects_Pos1_DefaultTrial" "Localizer_55_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
65 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "56_4_Objects_Pos3_TargetTrial" "Localizer_56_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
66 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "57_4_Objects_Pos4_DefaultTrial" "Localizer_57_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
67 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "58_4_Objects_Pos2_DefaultTrial" "Localizer_58_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
69 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "59_4_Objects_Pos1_DefaultTrial" "Localizer_59_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
70 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "60_4_Objects_Pos3_TargetTrial" "Localizer_60_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
71 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "61_4_Objects_Pos4_DefaultTrial" "Localizer_61_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
72 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "62_4_Objects_Pos2_DefaultTrial" "Localizer_62_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
73 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 8 "63_4_Objects_Pos3_TargetTrial" "Localizer_63_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
74 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "64_4_Objects_Pos1_DefaultTrial" "Localizer_64_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
75 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "65_4_Objects_Pos4_DefaultTrial" "Localizer_65_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
76 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "66_4_Objects_Pos2_DefaultTrial" "Localizer_66_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
77 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "67_4_Objects_Pos3_DefaultTrial" "Localizer_67_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
78 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 6 "68_4_Objects_Pos1_TargetTrial" "Localizer_68_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
79 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "69_4_Objects_Pos2_DefaultTrial" "Localizer_69_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
80 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "70_4_Objects_Pos1_DefaultTrial" "Localizer_70_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
81 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 10 "71_4_Objects_Pos4_TargetTrial" "Localizer_71_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
82 1950 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "72_4_Objects_Pos3_DefaultTrial" "Localizer_72_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
84 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "73_4_Objects_Pos2_DefaultTrial" "Localizer_73_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
85 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 8 "74_4_Objects_Pos3_TargetTrial" "Localizer_74_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
86 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "75_4_Objects_Pos4_DefaultTrial" "Localizer_75_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
87 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "76_4_Objects_Pos1_DefaultTrial" "Localizer_76_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
88 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "77_4_Objects_Pos2_DefaultTrial" "Localizer_77_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
89 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 12 "78_4_Objects_Pos4_TargetTrial" "Localizer_78_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
90 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "79_4_Objects_Pos3_DefaultTrial" "Localizer_79_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
91 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "80_4_Objects_Pos1_DefaultTrial" "Localizer_80_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
92 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "81_4_Objects_Pos3_DefaultTrial" "Localizer_81_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
93 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "82_4_Objects_Pos2_TargetTrial" "Localizer_82_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
94 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "83_4_Objects_Pos1_DefaultTrial" "Localizer_83_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
95 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "84_4_Objects_Pos4_DefaultTrial" "Localizer_84_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
96 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "85_4_Objects_Pos1_DefaultTrial" "Localizer_85_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
97 1950 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 12 "86_4_Objects_Pos3_TargetTrial" "Localizer_86_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
99 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "87_4_Objects_Pos2_DefaultTrial" "Localizer_87_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
100 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "88_4_Objects_Pos4_DefaultTrial" "Localizer_88_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
101 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "89_4_Objects_Pos1_DefaultTrial" "Localizer_89_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
102 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 8 "90_4_Objects_Pos2_TargetTrial" "Localizer_90_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
103 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "91_4_Objects_Pos4_DefaultTrial" "Localizer_91_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
104 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "92_4_Objects_Pos3_DefaultTrial" "Localizer_92_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
105 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "93_4_Objects_Pos4_DefaultTrial" "Localizer_93_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
106 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 6 "94_4_Objects_Pos1_TargetTrial" "Localizer_94_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
107 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "95_4_Objects_Pos3_DefaultTrial" "Localizer_95_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
108 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "96_4_Objects_Pos2_DefaultTrial" "Localizer_96_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
109 1950 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "97_4_Objects_Pos1_DefaultTrial" "Localizer_97_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
111 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "98_4_Objects_Pos2_DefaultTrial" "Localizer_98_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
112 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 8 "99_4_Objects_Pos3_TargetTrial" "Localizer_99_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
113 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "100_4_Objects_Pos4_DefaultTrial" "Localizer_100_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
114 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "101_4_Objects_Pos3_DefaultTrial" "Localizer_101_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
115 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "102_4_Objects_Pos4_DefaultTrial" "Localizer_102_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
116 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "103_4_Objects_Pos2_DefaultTrial" "Localizer_103_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
117 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 12 "104_4_Objects_Pos1_TargetTrial" "Localizer_104_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
118 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "105_4_Objects_Pos4_DefaultTrial" "Localizer_105_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
119 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "106_4_Objects_Pos3_DefaultTrial" "Localizer_106_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
120 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "107_4_Objects_Pos1_DefaultTrial" "Localizer_107_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
121 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 10 "108_4_Objects_Pos2_TargetTrial" "Localizer_108_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
122 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "109_4_Objects_Pos3_DefaultTrial" "Localizer_109_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
123 1950 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "110_4_Objects_Pos4_DefaultTrial" "Localizer_110_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
125 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 12 "111_4_Objects_Pos2_TargetTrial" "Localizer_111_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
126 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "112_4_Objects_Pos1_DefaultTrial" "Localizer_112_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
127 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "113_4_Objects_Pos3_DefaultTrial" "Localizer_113_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
128 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "114_4_Objects_Pos1_DefaultTrial" "Localizer_114_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
129 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "115_4_Objects_Pos2_DefaultTrial" "Localizer_115_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
130 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 10 "116_4_Objects_Pos4_TargetTrial" "Localizer_116_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
131 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "117_4_Objects_Pos2_DefaultTrial" "Localizer_117_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
132 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "118_4_Objects_Pos1_DefaultTrial" "Localizer_118_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
133 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "119_4_Objects_Pos3_DefaultTrial" "Localizer_119_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
134 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 10 "120_4_Objects_Pos4_TargetTrial" "Localizer_120_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
135 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "121_4_Objects_Pos3_DefaultTrial" "Localizer_121_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
136 1950 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 10 "122_4_Objects_Pos1_TargetTrial" "Localizer_122_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
138 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "123_4_Objects_Pos4_DefaultTrial" "Localizer_123_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
139 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "124_4_Objects_Pos2_DefaultTrial" "Localizer_124_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
140 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "125_4_Objects_Pos3_DefaultTrial" "Localizer_125_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
141 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 10 "126_4_Objects_Pos1_TargetTrial" "Localizer_126_4_Objects_Pos1_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
142 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "127_4_Objects_Pos4_DefaultTrial" "Localizer_127_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
143 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "128_4_Objects_Pos2_DefaultTrial" "Localizer_128_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
144 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "129_4_Objects_Pos1_DefaultTrial" "Localizer_129_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
145 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 8 "130_4_Objects_Pos4_TargetTrial" "Localizer_130_4_Objects_Pos4_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
146 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "131_4_Objects_Pos3_DefaultTrial" "Localizer_131_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
147 1950 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "132_4_Objects_Pos2_DefaultTrial" "Localizer_132_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
149 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "133_4_Objects_Pos1_DefaultTrial" "Localizer_133_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
150 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "134_4_Objects_Pos2_DefaultTrial" "Localizer_134_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
151 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "135_4_Objects_Pos3_TargetTrial" "Localizer_135_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
152 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "136_4_Objects_Pos4_DefaultTrial" "Localizer_136_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
153 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "137_4_Objects_Pos1_DefaultTrial" "Localizer_137_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
154 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "138_4_Objects_Pos4_DefaultTrial" "Localizer_138_4_Objects_Pos4_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
155 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 0 "139_4_Objects_Pos3_DefaultTrial" "Localizer_139_4_Objects_Pos3_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
156 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 4 "140_4_Objects_Pos2_TargetTrial" "Localizer_140_4_Objects_Pos2_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
157 0 131 1950 localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank blank 0 "141_4_Objects_Pos1_DefaultTrial" "Localizer_141_4_Objects_Pos1_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
158 0 131 1950 blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank blank 0 "142_4_Objects_Pos2_DefaultTrial" "Localizer_142_4_Objects_Pos2_DefaultTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
159 0 131 1950 blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target blank 6 "143_4_Objects_Pos3_TargetTrial" "Localizer_143_4_Objects_Pos3_TargetTrial" 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96;
160 0 131 1950 blank blank blank localizer blank blank blank localizer_inv blank blank blank localizer_target 0 "144_4_Objects_Pos4_DefaultTrial" "Localizer_144_4_Objects_Pos4_DefaultTrial" 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 = 20000;
code = "BaselinePost";
};
|
9c1a73c2bd47cc9c95032c7f143d1024505529b8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/788/CH8/EX8.3.a/8_3_data.sci
|
fdd9b2f078dda2419fd414bfaab36c5843699898
|
[] |
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
| 154
|
sci
|
8_3_data.sci
|
// Aim:To compute horsepower across the unloading valve
// Given:
// pump pressure during unloading:
p=25; //psi
// pump flow to the tank:
Q=20; //gpm
|
3393562840733f238f6c043dd6add487e990c685
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/887/CH16/EX16.2/16_2.sce
|
a10bbb279f650b591678ba4f7621e2424f6f479b
|
[] |
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,144
|
sce
|
16_2.sce
|
clc
//ex16.2
B=1; //magnetic flux density
l=0.3;
V_T=2;
R_A=0.05;
//CASE a
//bar is stationary at t=0
u_ini=0; //initial velocity of bar is 0
e_A=B*l*u_ini; //induced voltage
i_A_ini=(V_T-e_A)/R_A; //initial current
F_ini=B*l*i_A_ini; //initial force on the bar
//steady state condition with no-load e_A=B*l*u=V_T
u=V_T/(B*l); //from steady state condition with no-load
printf(" All the values in the textbook are approximated hence the values in this code differ from those of Textbook")
disp('CASE a:')
disp(i_A_ini,'initial current in amperes')
disp(F_ini,'initial force on the bar in newtons')
disp(u,'steady-state final speed in m/s')
//CASE b
F_load=4; //mechanical load
//steady state condition F=B*l*i_A=F_load
i_A=F_load/(B*l); //from steady state condition
e_A=V_T-R_A*i_A; //induced voltage
u=e_A/(B*l); //steady-state speed
P_m=F_load*u; //mechanical power
P_t=V_T*i_A; //power taken from battery
P_R=i_A^2*R_A; //power dissipated in the resistance
eff=P_m*100/P_t; //efficiency
disp('CASE b:')
disp(u,'steady-state speed in m/s')
disp(P_t,'power delivered by V_t in watts')
disp(P_m,'power delivered to mechanical load in watts')
disp(P_R,'power lost to heat in the resistance in watts')
disp(eff,'effciency of converting electrical power to mechanical power')
//CASE c
//with the pulling force acting to the right, machine operates as a generator
F_pull=2; //pulling force
//steady-state condition F=B*l*i_A=F_pull
i_A=F_pull/(B*l); //from steady-state condition
e_A=V_T+R_A*i_A; //induced voltage
u=e_A/(B*l); //steady-state speed
P_m=F_pull*u; //mechanical power
P_t=V_T*i_A; //power taken by battery
P_R=i_A^2*R_A; //power dissipated in the resistance
eff=P_t*100/P_m; //efficiency
disp('CASE c:')
disp(u,'steady-state speed in m/s')
disp(P_m,'power taken from mechanical source in watts')
disp(P_t,'power delivered to the battery in watts')
disp(P_R,'power lost to heat in the resistance')
disp(eff,'efficiency of converting mechanical power to electrical power')
|
3ae9225e39aa3dbfb2185c0f794ec93088c8e3cf
|
25938fdd57f60ee5725a949bc87d6afd3cc4fe24
|
/Practica5/jacobi.sce
|
684e40f5a6274163fd38891dd78a7530378af9f5
|
[] |
no_license
|
Joaquin98/Metodos
|
a3df61366647a7c02a81bb0467befdcbbedb9426
|
5b30532431c111ca453f9d6b37ffa377616ba6a5
|
refs/heads/master
| 2020-04-04T05:13:27.646770
| 2018-12-07T12:25:43
| 2018-12-07T12:25:43
| 155,738,528
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 888
|
sce
|
jacobi.sce
|
function y = jacobi(A,b,t)//t tolerancia
x = zeros(1,length(b))
k = 0
delta=t+1
while k<1000 & t<delta
xk=x
for i = 1:length(x)
s = 0
for j = 1:length(x)
// mprintf("%d , %d\n", i ,j)
if j <> i then s = s + (A(i,j)*xk(j))
end
end
if(A(i,i)==0)
mprintf("Matriz invalida, Cero en la diagonal")
y=[]
return
end
x(i) = (1/A(i,i)) * (b(i) - s)
end
k = k + 1
delta=norm(x-xk)
end
printf("Cantidad de operaciones %d\n",k)
y = x
endfunction
//Convergenciua:
//(condicion suficiente) A es estrictamente diag dom.
//(cond nec. y suficiente) El radio espectral de (inv(D)*(L+U)) < 1
|
a28b01107bad583ed219f6ddfa65be4630ba42a1
|
089894a36ef33cb3d0f697541716c9b6cd8dcc43
|
/NLP_Project/test/blog/bow/bow.2_3.tst
|
24b688e25f98d32a127fbc7662acf9b9554f453d
|
[] |
no_license
|
mandar15/NLP_Project
|
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
|
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
|
refs/heads/master
| 2020-05-20T13:36:05.842840
| 2013-07-31T06:53:59
| 2013-07-31T06:53:59
| 6,534,406
| 0
| 1
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 3,659
|
tst
|
bow.2_3.tst
|
2 14:0.1111111111111111 21:1.0 41:0.5 81:0.2 110:0.5 141:0.5 269:1.0 289:1.0 343:1.0 544:1.0 951:1.0 1226:1.0
2 6:1.0 141:0.5 424:1.0
2 6:3.0 9:1.0 14:0.3333333333333333 16:0.01694915254237288 21:1.0 27:0.125 50:0.17647058823529413 52:1.0 81:0.2 84:0.09090909090909091 90:1.0 91:1.0 126:0.5 268:1.0 286:1.0 289:1.0 357:1.0 390:1.0 673:1.0 1520:1.0
2 1:0.07692307692307693 14:0.2222222222222222 31:1.0 81:0.4 87:1.0 154:0.3333333333333333 288:1.0 618:1.0 1252:1.0
2 9:1.0 23:0.1111111111111111 32:1.0 50:0.058823529411764705 81:0.2 152:0.3333333333333333 356:1.0 392:1.0 553:1.0 704:1.0 1410:1.0
2 4:1.0 9:4.0 12:0.15384615384615385 14:0.3333333333333333 27:0.125 41:0.5 103:1.0 106:1.0 114:0.2 154:0.3333333333333333 175:1.0 212:1.0 281:1.0 289:1.0 370:1.0 376:1.0 468:1.0 673:4.0
2 14:0.1111111111111111 21:1.0 50:0.058823529411764705 64:1.0 129:1.0 437:0.25 667:1.0 668:1.0 669:0.5 670:1.0 671:1.0
2 4:1.0 9:2.0 64:1.0 81:0.2 89:0.3333333333333333 126:0.5 272:1.0 287:1.0 289:1.0 294:1.0 343:1.0 407:0.2 577:0.5 672:1.0 673:1.0 674:0.3333333333333333
2 9:1.0 12:0.07692307692307693 14:0.1111111111111111 31:1.0 50:0.058823529411764705 64:1.0 84:0.09090909090909091 343:1.0 393:0.3333333333333333 394:1.0 669:0.5 675:0.2 676:1.0 677:1.0 678:1.0 679:1.0 680:1.0
2 9:1.0 52:0.5 212:1.0
2 9:1.0 52:0.5 394:1.0
2 126:0.5 273:2.0 286:1.0 353:0.3333333333333333 467:1.0 532:1.0
2 468:1.0 523:1.0 679:1.0
2 14:0.1111111111111111 125:1.0
2 27:0.125 28:1.0 49:1.0 81:0.2 132:0.5 273:1.0 619:1.0
2 3:1.0 6:2.0 12:0.07692307692307693 50:0.11764705882352941 61:0.2 564:1.0 1566:1.0
2 5:0.3333333333333333 6:1.0 11:1.0 13:1.0 14:0.2222222222222222 81:0.2 141:0.5 154:0.3333333333333333 200:1.0 286:1.0 381:1.0
2 9:1.0 12:0.07692307692307693 101:1.0 291:0.5 343:1.0 437:0.25 470:1.0 619:1.0 971:1.0 1148:1.0
2 16:0.01694915254237288 20:0.5 31:1.0 151:0.3333333333333333 269:1.0 272:1.0
2 152:0.3333333333333333 273:1.0 274:1.0 275:1.0 276:1.0 277:1.0 278:1.0 279:1.0
2 280:1.0
2 16:0.01694915254237288 31:1.0 32:1.0 269:1.0
2 3:1.0 14:0.1111111111111111 16:0.01694915254237288 40:1.0 41:0.5 287:1.0 289:1.0 301:1.0
2 9:1.0 15:1.0 16:0.06779661016949153 31:1.0 119:1.0 198:1.0 269:1.0 281:2.0 282:1.0 283:1.0 284:1.0 285:1.0 286:1.0 287:1.0 288:1.0
2 9:1.0 16:0.01694915254237288 31:1.0 67:1.0 106:0.2 269:1.0 289:1.0 290:1.0
2 16:0.01694915254237288 61:0.1 129:1.0 175:1.0 212:1.0 291:0.5 292:1.0 293:1.0
2 3:2.0 9:4.0 12:0.15384615384615385 16:0.01694915254237288 50:0.058823529411764705 55:1.0 269:1.0 294:1.0 295:1.0 296:2.0 297:1.0 298:1.0 299:1.0 300:1.0 301:1.0
2 9:2.0 14:0.1111111111111111 39:0.3333333333333333 269:1.0 273:2.0 294:1.0
2 9:1.0 32:1.0 88:1.0 114:0.2 381:1.0 583:1.0
2 16:0.01694915254237288 39:0.3333333333333333 50:0.058823529411764705 120:0.2 175:1.0 199:1.0 343:1.0 1560:1.0
2 3:1.0 11:1.0 12:0.07692307692307693 35:1.0 39:0.3333333333333333 690:1.0
2 1:0.07692307692307693 6:1.0 13:2.0 52:0.5 81:0.4 89:0.6666666666666666 122:1.0 148:1.0 198:1.0 394:1.0 458:2.0 541:1.0
2 1:0.07692307692307693 9:2.0 20:0.5 50:0.058823529411764705 52:0.5 132:0.5 343:1.0 394:1.0 544:1.0 673:1.0 712:1.0
2 14:0.1111111111111111 88:1.0 108:1.0 120:0.2 168:1.0 181:1.0 562:1.0 931:1.0 937:1.0
2 3:1.0 6:1.0 11:2.0 12:0.07692307692307693 14:0.2222222222222222 41:0.5 50:0.058823529411764705 262:0.2 291:0.5 381:2.0 393:0.3333333333333333 394:1.0 502:1.0 507:0.3333333333333333 727:1.0 1252:1.0 1478:1.0
2 61:0.2 95:0.25 281:1.0 291:1.0 387:1.0 525:1.0
2 1:0.07692307692307693 9:3.0 16:0.03389830508474576 20:0.5 129:1.0 212:1.0 270:1.0 291:0.5 292:1.0
2 4:1.0 9:1.0 14:0.1111111111111111 16:0.01694915254237288 31:1.0 105:1.0 106:0.2 154:0.3333333333333333 212:1.0
|
b930db5420e4fffb34b2719014f8a9c67eaaa51a
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1118/CH11/EX11.2/eg11_2.sce
|
c6f1001d0cfdd594a307480773575821a16bd256
|
[] |
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
| 817
|
sce
|
eg11_2.sce
|
clear;
clc;
function [r,i]=d(mag,theta)
r=mag*cosd(theta);
i=mag*sind(theta);
endfunction
previousprot = funcprot(0)
funcprot(0)
//clc();
mag=0.98;
theta=3;
[r,i]=d(mag,theta);
A=complex(r,i);
D=A;
mag=110;
theta=75;
[r,i]=d(mag,theta);
B=complex(r,i);
mag=0.0005;
theta=88;
[r,i]=d(mag,theta);
C=complex(r,i);
v=132*10^(3);
s=50*10^(6);
pf=0.8;
vrp=v/sqrt(3);
mag=vrp;
theta=0;
[r,i]=d(mag,theta);
vr=complex(r,i);
i=s/(sqrt(3)*v);
mag=i;
theta=-acosd(pf);
[r,i]=d(mag,theta);
ir=complex(r,i);
vsp=A*vr + B*ir;
printf('the voltage at the sending end is:');
disp(vsp);
is=C*vr + D*ir;
printf('the current at the sending end is:');
disp(is);
qs=atand(imag(vsp)/real(vsp))-atand(imag(is)/real(is));
printf("The power factor is:%.4f",cosd(qs));
|
2dfe35d18df6636ccc8a4eac33a671922482add6
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3768/CH9/EX9.4/Ex9_4.sce
|
c97979d2f8e1cfdc9fd74fad2ce845c7daef6570
|
[] |
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
| 446
|
sce
|
Ex9_4.sce
|
//Example number 9.4, Page number 204
clc;clear;
close;
//Variable declaration
RH=3.66*10**-4; //hall coefficient(m**3/c)
rho=8.93*10**-3; //resistivity(m)
e=1.6*10**-19; //charge(c)
//Calculation
mew=RH/rho; //mobility(m**2/Vs)
n=1/(RH*e); //density of atoms(per m**3)
//Result
printf("mobility is %.5f m^2/Vs",mew)
printf("\n density of atoms is %.1e per m^3",n)
//answer in the book varies due to rounding off errors
|
1df33b0a1711c616ef4d860faff60aeb5903d23f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/824/CH11/EX11.1/11_1.sce
|
61ceebb13c4067a9a93e7e08bd550128976a7f41
|
[] |
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
| 137
|
sce
|
11_1.sce
|
//clear//
clc
clear
exec("11.1data.sci");
WAZ1=DAB*CT0*(yAb-yAs)/s;
WAZ2=c*DAB*CT0*log((1-yAs)/(1-yAb))/s;
disp(WAZ1)
disp(WAZ2)
|
2d35a9570580046aa4013d2fec5eec6d05a3d3b8
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/165/CH15/EX15.3/ex15_3.sce
|
a123fa07904482cc7e39a78a8a0bc1fcd156f0f5
|
[] |
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
| 566
|
sce
|
ex15_3.sce
|
//Example 15.3
clc;
//Design a 2nd order LPF having a cutoff frequency of 2 kHz
fh=2000; //Cutoff frequency in Hz
C2=3.3*10^-9; //Assumed value of capacitor
C3=C2;
R=invr(2*%pi*fh*C2);
//Assume a std value of R
R=22*10^3;
R2=R;
R3=R;
R1=10000; //Assumed
Rf=.560*R1;
printf('\nAssumed values of Capcitors C2 & C3 = %.2f nF\n',C2*10^9)
printf('\nValues of Resistors R2 & R3 = %.2f k ohm\n',R2/10^3)
printf('\nValues of Feedback Resistor Rf = %.2f k ohm\n',Rf/10^3)
printf('\nValues of Input Resistors R1 = %.2f k ohm\n',R1/10^3)
|
0d096b799cefcaad5e977b1fb38f5866e34b08e2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2159/CH1/EX1.24/24.sce
|
7937a828c280a7a1e8de89785aca4d5ec305d413
|
[] |
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
|
24.sce
|
// problem 1.24
x=30
z=sin(3.142*x/180)
d=1.4
h=3
b=1.5
h1=z+d
a=0.5*h*b
w=9810
p=w*a*h1
h11=((z*z*h*h*h*b)/(36*a*h1))+h1
disp(p,"total pressure on the plate")
disp(h11,"position of centre of pressure")
|
e8eccdc9dca0280926508b042d8bfc9c910152cd
|
8217f7986187902617ad1bf89cb789618a90dd0a
|
/source/2.5/tests/examples/polar.man.tst
|
2d983eda6f7d1f2d659177f5a6abeee27c4de94e
|
[
"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
| 78
|
tst
|
polar.man.tst
|
clear;lines(0);
A=rand(5,5);
[Ro,Theta]=polar(A);
norm(A-Ro*expm(%i*Theta),1)
|
478b89ed80fe7b77d627d48671cd8f4362260859
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/842/CH10/EX10.13/Example10_13.sce
|
5750db240feef3de880db1a4fb97db95109b4276
|
[] |
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
| 170
|
sce
|
Example10_13.sce
|
//clear//
//Example10.13:Inverse z tranform ofInFinite duration discrete sequence
//Power Series Method (OR)//Long Division Method
z = %z;
a = 2;
X = ldiv(z,z-a,5)
|
5f6678a151e02e1369e6166b878f6212dbeee2f0
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/995/CH2/EX2.5/Ex2_5.sce
|
676d6095afd828467d0d0668100a04eb857edd54
|
[] |
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
| 115
|
sce
|
Ex2_5.sce
|
//Ex:2.5
clc;
clear;
close;
r=27*(10^3);
printf("Resistor value = %d ohm",r);
printf("\nTolerance = 5 %%");
|
1e274fb0e0e3d74c303678c86897046b576afbbe
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1319/CH1/EX1.39/1_39.sce
|
e54cdc7edf649a093c1994d839600387c01677f8
|
[] |
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
| 961
|
sce
|
1_39.sce
|
//To determine the current through all the branches of the given network
clc;
clear;
L=1;
R=1*(10^3);
C=400*(10^-6);
i=2; // 2 cos 50t
w0=1/(sqrt(L*C));
v=i*R; // Voltage across the source
Xl=%i*w0*L; // Inductive reactance
Xc=-%i/(C*w0);// Capacitive reactance
Il=v/Xl; // Inductor current
Ic=v/Xc; // Capacitor Current
//Condition to check if angle is 90
if(real(Il)==0)
if(imag(Il)>0)
tl=atand(%inf);
else
tl=-1*atand(%inf);
end
else
tl=atand(imag(Il)/real(Il));
end
//Condition to check if angle is 90
if(real(Ic)==0)
if(imag(Ic)>0)
tc=atand(%inf);
else
tc=-1*atand(%inf);
end
else
tc=atand(imag(Ic)/real(Ic));
end
printf('The Current through the resistor is %g cos(%g)t A\n',i,w0)
printf('The Current through the inductor is %g cos(%gt + (%g)) A\n',abs(Il),w0,tl)
printf('The Current through the capacitor is %g cos(%gt + (%g)) A\n',abs(Ic),w0,tc)
|
a0b98a3060d51d472bf4927710e36c7b89781bf7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/803/CH7/EX7.1/ex7_1.sce
|
8ad0e68be1ee1b8bcf36f2ce4897201009770a65
|
[] |
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
| 525
|
sce
|
ex7_1.sce
|
clc
D1=127;................................//Array aperture
D2=67;
D3=335;
f1=3*(10^6);..//frequency at 3MHz
f2=30*(10^6);..//frequency at 30MHz
c=3*(10^8);
lambda1=c/f1;
lambda2=c/f2;
R1=2*(D1^3) ./lambda1;
R2=2*(D2^3) ./lambda1;
R3=2*(D3^3) ./lambda1;
R4=2*(D1^3) ./lambda2;
R5=2*(D2^3) ./lambda2;
R6=2*(D3^3) ./lambda2;
disp("m",R1,"Range at 3MHz");
disp("m",R2,"Range at 3MHz");
disp("m",R3,"Range at 3MHz");
disp("m",R4,"Range at 30MHz");
disp("m",R5,"Range at 30MHz");
disp("m",R6,"Range at 30MHz");
|
45e592f9a97b74416f2e01aec6edefe2c88aaa8d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/848/CH11/EX11.6/Example11_6.sce
|
a3fbe484f39c8016f5e812680eea79ff5726eaaa
|
[] |
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
| 296
|
sce
|
Example11_6.sce
|
//clear//
//Caption: Optical Signal-to-noise ratio (OSNR)
//Example11.6
//page 412
clear;
close;
clc;
Q = 6; //Q factor of 6
OSNR = (1/2)*Q*(Q+sqrt(2));
disp(10*log10(OSNR),'Optical Signal-to-noise ratio in dB OSNR =')
//Result
//Optical Signal-to-noise ratio in dB OSNR = 13.471863
|
80444d242d734aade1262424019a47d046c45644
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1199/CH2/EX2.17/2_17.sci
|
9261f57f277700462254eac637f2dd77a6f0c0bb
|
[] |
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
| 244
|
sci
|
2_17.sci
|
// 2.17
clc;
strain=-5*10^-6;
Gf=-12.1;
R=120;
dR_nickel=Gf*R*strain;
printf("Change in resistance of nickel = %.3f ohm",dR_nickel)
Gf=2;
R=120;
dR_nicrome=Gf*R*strain;
printf("\nChange in resistance of nicrome = %.3f ohm",dR_nicrome)
|
98db2aad0a33d1db9f4b9375f5bdd9c80c1a2b95
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2939/CH4/EX4.33/Ex4_33.sce
|
76b3960a9107325d359befd1c92387908420306b
|
[] |
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
| 453
|
sce
|
Ex4_33.sce
|
//Ex4_33
clc;
// Given:
ax0 =1; //assume
tx = 2; //hrs
ty = 1; //hrs
// Solution:
// general equation connecting Ax and Ay is
// Ax(n) = (ky * Ax(0) * (exp(-kx * t) - exp(-ky * t))/ (ky - kx)) + Ay(0) * exp(-ky * t)
ax0 = 1;
ay4 = (ax0 * (0.693/1) * ((1/4)-(1/16)))/((0.693/1)-(0.693/2)) + ax0 * (1/16);
ax4 = (1* ax0)/4;
proportion = (ay4 * 100)/(ay4 + ax4);
printf("The proportion of ay4 at the end of 4 hrs is %f",proportion)
|
c1de41f22ecd6e722c11fbd9160f050cb595b129
|
717ddeb7e700373742c617a95e25a2376565112c
|
/2474/CH2/EX2.6/Ch02Ex06.sce
|
120f96083224294203e79a5a98df8938ada8de51
|
[] |
no_license
|
appucrossroads/Scilab-TBC-Uploads
|
b7ce9a8665d6253926fa8cc0989cda3c0db8e63d
|
1d1c6f68fe7afb15ea12fd38492ec171491f8ce7
|
refs/heads/master
| 2021-01-22T04:15:15.512674
| 2017-09-19T11:51:56
| 2017-09-19T11:51:56
| 92,444,732
| 0
| 0
| null | 2017-05-25T21:09:20
| 2017-05-25T21:09:19
| null |
UTF-8
|
Scilab
| false
| false
| 578
|
sce
|
Ch02Ex06.sce
|
// Scilab code Ex2.6: Pg.79 (2008)
clc; clear;
R = 1.50e+011; // Radius of earth's orbit, m
c = 3e+08; // Velocity of light, m/s
sigma = 1.36e+03; // Solar constant, W/m^2
P = 4*%pi*R^2*(sigma); // Total power radiated by the sun, J/s
t = 1; // Time, sec
// Since P = E/t, solving for E, we get
E = P*t; // Energy radiated by Sun per second, J
m = E/c^2; // Amount of mass lost by sun, kg
printf("\nThe rate at which the sun loses mass per second = %3.1e kg/s",m);
// Result
// The rate at which the sun loses mass per second = 4.3e+009 kg/s
|
f248517f2444567d0997c10330a6d5df2dd74164
|
f542bc49c4d04b47d19c88e7c89d5db60922e34e
|
/PresentationFiles_Subjects/BIPO/RU62HEJ/ATWM1_Working_Memory_MEG_RU62HEJ_Session2/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce
|
e61a80d7e3a21ec428703782d093bb6ae6d89095
|
[] |
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,617
|
sce
|
ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run2.sce
|
# ATWM1 MEG Experiment
scenario = "ATWM1_Working_Memory_MEG_salient_cued_run2";
#scenario_type = fMRI; # Fuer Scanner
#scenario_type = fMRI_emulation; # Zum Testen
scenario_type = trials; # for MEG
#scan_period = 2000; # TR
#pulses_per_scan = 1;
#pulse_code = 1;
pulse_width=6;
default_monitor_sounds = false;
active_buttons = 2;
response_matching = simple_matching;
button_codes = 10, 20;
default_font_size = 36;
default_font = "Arial";
default_background_color = 0 ,0 ,0 ;
write_codes=true; # for MEG only
begin;
#Picture definitions
box { height = 382; width = 382; color = 0, 0, 0;} frame1;
box { height = 369; width = 369; 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 = 369; width = 369; color = 42, 42, 42;} 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;
44 62 292 292 399 125 1742 2992 2592 fixation_cross gabor_023 gabor_107 gabor_137 gabor_083 gabor_023 gabor_107_alt gabor_137 gabor_083_alt "2_1_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2600_gabor_patch_orientation_023_107_137_083_target_position_1_3_retrieval_position_1" gabor_023_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_1_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_023_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 2292 fixation_cross gabor_146 gabor_081 gabor_123 gabor_108 gabor_146_alt gabor_081 gabor_123 gabor_108_alt "2_2_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2300_gabor_patch_orientation_146_081_123_108_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_170_framed gabor_circ blank blank blank blank fixation_cross_white "2_2_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 2292 fixation_cross gabor_131 gabor_146 gabor_067 gabor_097 gabor_131_alt gabor_146 gabor_067_alt gabor_097 "2_3_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2300_gabor_patch_orientation_131_146_067_097_target_position_2_4_retrieval_position_2" gabor_circ gabor_146_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_3_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_146_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 1992 fixation_cross gabor_167 gabor_143 gabor_007 gabor_090 gabor_167_alt gabor_143_alt gabor_007 gabor_090 "2_4_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_167_143_007_090_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_007_framed gabor_circ blank blank blank blank fixation_cross_white "2_4_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_155 gabor_121 gabor_069 gabor_097 gabor_155 gabor_121_alt gabor_069_alt gabor_097 "2_5_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_155_121_069_097_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_white "2_5_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_059 gabor_093 gabor_179 gabor_119 gabor_059 gabor_093_alt gabor_179_alt gabor_119 "2_6_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_059_093_179_119_target_position_1_4_retrieval_position_1" gabor_059_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_6_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_059_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2242 2992 2342 fixation_cross gabor_137 gabor_078 gabor_011 gabor_121 gabor_137_alt gabor_078 gabor_011 gabor_121_alt "2_7_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2350_gabor_patch_orientation_137_078_011_121_target_position_2_3_retrieval_position_2" gabor_circ gabor_031_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_7_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_031_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1792 2992 2342 fixation_cross gabor_131 gabor_174 gabor_021 gabor_158 gabor_131 gabor_174 gabor_021_alt gabor_158_alt "2_8_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2350_gabor_patch_orientation_131_174_021_158_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_068_framed gabor_circ blank blank blank blank fixation_cross_white "2_8_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_068_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2192 2992 2242 fixation_cross gabor_173 gabor_130 gabor_005 gabor_040 gabor_173_alt gabor_130 gabor_005 gabor_040_alt "2_9_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2250_gabor_patch_orientation_173_130_005_040_target_position_2_3_retrieval_position_2" gabor_circ gabor_130_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_9_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_130_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 2442 fixation_cross gabor_140 gabor_122 gabor_160 gabor_008 gabor_140 gabor_122_alt gabor_160_alt gabor_008 "2_10_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_140_122_160_008_target_position_1_4_retrieval_position_1" gabor_140_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_10_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2092 fixation_cross gabor_073 gabor_034 gabor_102 gabor_049 gabor_073 gabor_034_alt gabor_102_alt gabor_049 "2_11_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2100_gabor_patch_orientation_073_034_102_049_target_position_1_4_retrieval_position_1" gabor_073_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_11_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_073_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2042 2992 1942 fixation_cross gabor_040 gabor_099 gabor_055 gabor_084 gabor_040 gabor_099 gabor_055_alt gabor_084_alt "2_12_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2050_3000_1950_gabor_patch_orientation_040_099_055_084_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_white "2_12_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_084_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 2542 fixation_cross gabor_100 gabor_124 gabor_042 gabor_011 gabor_100_alt gabor_124 gabor_042 gabor_011_alt "2_13_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2550_gabor_patch_orientation_100_124_042_011_target_position_2_3_retrieval_position_2" gabor_circ gabor_079_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_13_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 2392 fixation_cross gabor_153 gabor_120 gabor_042 gabor_067 gabor_153_alt gabor_120 gabor_042 gabor_067_alt "2_14_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_2400_gabor_patch_orientation_153_120_042_067_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_180_framed gabor_circ blank blank blank blank fixation_cross_white "2_14_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2142 fixation_cross gabor_055 gabor_162 gabor_099 gabor_027 gabor_055 gabor_162_alt gabor_099_alt gabor_027 "2_15_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_055_162_099_027_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_027_framed blank blank blank blank fixation_cross_white "2_15_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2042 fixation_cross gabor_057 gabor_180 gabor_098 gabor_114 gabor_057 gabor_180_alt gabor_098_alt gabor_114 "2_16_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_057_180_098_114_target_position_1_4_retrieval_position_1" gabor_008_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_16_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1992 2992 2292 fixation_cross gabor_102 gabor_023 gabor_085 gabor_151 gabor_102 gabor_023 gabor_085_alt gabor_151_alt "2_17_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2000_3000_2300_gabor_patch_orientation_102_023_085_151_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_085_framed gabor_circ blank blank blank blank fixation_cross_white "2_17_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_085_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1842 2992 2042 fixation_cross gabor_167 gabor_084 gabor_149 gabor_099 gabor_167_alt gabor_084 gabor_149_alt gabor_099 "2_18_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2050_gabor_patch_orientation_167_084_149_099_target_position_2_4_retrieval_position_2" gabor_circ gabor_131_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_18_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_131_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2192 2992 2042 fixation_cross gabor_170 gabor_026 gabor_132 gabor_060 gabor_170 gabor_026 gabor_132_alt gabor_060_alt "2_19_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2050_gabor_patch_orientation_170_026_132_060_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_132_framed gabor_circ blank blank blank blank fixation_cross_white "2_19_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_132_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_002 gabor_176 gabor_035 gabor_064 gabor_002 gabor_176 gabor_035_alt gabor_064_alt "2_20_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_002_176_035_064_target_position_1_2_retrieval_position_1" gabor_002_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_20_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_002_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 1892 fixation_cross gabor_116 gabor_159 gabor_174 gabor_100 gabor_116_alt gabor_159 gabor_174 gabor_100_alt "2_21_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_1900_gabor_patch_orientation_116_159_174_100_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_034_framed gabor_circ blank blank blank blank fixation_cross_white "2_21_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2042 fixation_cross gabor_028 gabor_077 gabor_164 gabor_006 gabor_028_alt gabor_077 gabor_164 gabor_006_alt "2_22_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_028_077_164_006_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_164_framed gabor_circ blank blank blank blank fixation_cross_white "2_22_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2142 2992 2142 fixation_cross gabor_108 gabor_020 gabor_178 gabor_146 gabor_108 gabor_020 gabor_178_alt gabor_146_alt "2_23_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_108_020_178_146_target_position_1_2_retrieval_position_1" gabor_061_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_23_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_061_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1892 2992 2492 fixation_cross gabor_096 gabor_010 gabor_044 gabor_174 gabor_096 gabor_010_alt gabor_044 gabor_174_alt "2_24_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2500_gabor_patch_orientation_096_010_044_174_target_position_1_3_retrieval_position_2" gabor_circ gabor_150_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_24_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_150_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1792 2992 2342 fixation_cross gabor_142 gabor_157 gabor_091 gabor_071 gabor_142_alt gabor_157 gabor_091_alt gabor_071 "2_25_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_142_157_091_071_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_071_framed blank blank blank blank fixation_cross_white "2_25_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_071_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2492 fixation_cross gabor_048 gabor_162 gabor_087 gabor_012 gabor_048_alt gabor_162 gabor_087 gabor_012_alt "2_26_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2500_gabor_patch_orientation_048_162_087_012_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_087_framed gabor_circ blank blank blank blank fixation_cross_white "2_26_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_091 gabor_123 gabor_106 gabor_164 gabor_091_alt gabor_123 gabor_106 gabor_164_alt "2_27_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_091_123_106_164_target_position_2_3_retrieval_position_2" gabor_circ gabor_123_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_27_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_123_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 1942 fixation_cross gabor_154 gabor_134 gabor_090 gabor_110 gabor_154_alt gabor_134 gabor_090_alt gabor_110 "2_28_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_1950_gabor_patch_orientation_154_134_090_110_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_110_framed blank blank blank blank fixation_cross_white "2_28_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 1992 fixation_cross gabor_030 gabor_088 gabor_009 gabor_049 gabor_030 gabor_088 gabor_009_alt gabor_049_alt "2_29_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_030_088_009_049_target_position_1_2_retrieval_position_1" gabor_170_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_29_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1842 2992 2292 fixation_cross gabor_095 gabor_116 gabor_137 gabor_009 gabor_095_alt gabor_116_alt gabor_137 gabor_009 "2_30_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2300_gabor_patch_orientation_095_116_137_009_target_position_3_4_retrieval_position_2" gabor_circ gabor_164_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_30_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_164_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2092 fixation_cross gabor_143 gabor_172 gabor_015 gabor_125 gabor_143_alt gabor_172 gabor_015 gabor_125_alt "2_31_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2100_gabor_patch_orientation_143_172_015_125_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_064_framed gabor_circ blank blank blank blank fixation_cross_white "2_31_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_064_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2542 fixation_cross gabor_102 gabor_084 gabor_128 gabor_019 gabor_102_alt gabor_084_alt gabor_128 gabor_019 "2_32_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2550_gabor_patch_orientation_102_084_128_019_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_128_framed gabor_circ blank blank blank blank fixation_cross_white "2_32_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2142 fixation_cross gabor_162 gabor_104 gabor_132 gabor_072 gabor_162 gabor_104_alt gabor_132_alt gabor_072 "2_33_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2150_gabor_patch_orientation_162_104_132_072_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_072_framed blank blank blank blank fixation_cross_white "2_33_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_072_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 2442 fixation_cross gabor_064 gabor_093 gabor_137 gabor_121 gabor_064 gabor_093 gabor_137_alt gabor_121_alt "2_34_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2450_gabor_patch_orientation_064_093_137_121_target_position_1_2_retrieval_position_2" gabor_circ gabor_047_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_34_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 1892 fixation_cross gabor_152 gabor_104 gabor_068 gabor_035 gabor_152_alt gabor_104_alt gabor_068 gabor_035 "2_35_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_152_104_068_035_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_084_framed blank blank blank blank fixation_cross_white "2_35_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2442 fixation_cross gabor_178 gabor_072 gabor_100 gabor_011 gabor_178_alt gabor_072_alt gabor_100 gabor_011 "2_36_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2450_gabor_patch_orientation_178_072_100_011_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_149_framed blank blank blank blank fixation_cross_white "2_36_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2492 fixation_cross gabor_093 gabor_166 gabor_048 gabor_078 gabor_093_alt gabor_166_alt gabor_048 gabor_078 "2_37_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2500_gabor_patch_orientation_093_166_048_078_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_048_framed gabor_circ blank blank blank blank fixation_cross_white "2_37_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1742 2992 1892 fixation_cross gabor_121 gabor_136 gabor_090 gabor_055 gabor_121 gabor_136_alt gabor_090_alt gabor_055 "2_38_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1750_3000_1900_gabor_patch_orientation_121_136_090_055_target_position_1_4_retrieval_position_2" gabor_circ gabor_001_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_38_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_001_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 1942 fixation_cross gabor_030 gabor_083 gabor_109 gabor_057 gabor_030 gabor_083_alt gabor_109_alt gabor_057 "2_39_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_1950_gabor_patch_orientation_030_083_109_057_target_position_1_4_retrieval_position_1" gabor_169_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_39_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_169_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2442 fixation_cross gabor_075 gabor_046 gabor_157 gabor_006 gabor_075_alt gabor_046 gabor_157 gabor_006_alt "2_40_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2450_gabor_patch_orientation_075_046_157_006_target_position_2_3_retrieval_position_2" gabor_circ gabor_096_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_40_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_096_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2042 2992 1992 fixation_cross gabor_070 gabor_094 gabor_038 gabor_013 gabor_070 gabor_094_alt gabor_038_alt gabor_013 "2_41_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_070_094_038_013_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_153_framed blank blank blank blank fixation_cross_white "2_41_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1892 2992 1992 fixation_cross gabor_097 gabor_128 gabor_041 gabor_064 gabor_097_alt gabor_128_alt gabor_041 gabor_064 "2_42_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2000_gabor_patch_orientation_097_128_041_064_target_position_3_4_retrieval_position_1" gabor_097_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_42_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_097_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2392 fixation_cross gabor_091 gabor_057 gabor_134 gabor_165 gabor_091_alt gabor_057 gabor_134_alt gabor_165 "2_43_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_091_057_134_165_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_028_framed blank blank blank blank fixation_cross_white "2_43_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_028_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2192 fixation_cross gabor_153 gabor_003 gabor_124 gabor_079 gabor_153_alt gabor_003 gabor_124_alt gabor_079 "2_44_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_153_003_124_079_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_079_framed blank blank blank blank fixation_cross_white "2_44_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_079_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_132 gabor_027 gabor_081 gabor_053 gabor_132_alt gabor_027_alt gabor_081 gabor_053 "2_45_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_132_027_081_053_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_005_framed blank blank blank blank fixation_cross_white "2_45_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1942 2992 2592 fixation_cross gabor_124 gabor_080 gabor_154 gabor_003 gabor_124 gabor_080_alt gabor_154_alt gabor_003 "2_46_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2600_gabor_patch_orientation_124_080_154_003_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_048_framed blank blank blank blank fixation_cross_white "2_46_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2042 2992 2592 fixation_cross gabor_088 gabor_043 gabor_110 gabor_068 gabor_088_alt gabor_043 gabor_110_alt gabor_068 "2_47_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_088_043_110_068_target_position_2_4_retrieval_position_2" gabor_circ gabor_043_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_47_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 2242 2992 2292 fixation_cross gabor_134 gabor_096 gabor_161 gabor_027 gabor_134 gabor_096_alt gabor_161 gabor_027_alt "2_48_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2300_gabor_patch_orientation_134_096_161_027_target_position_1_3_retrieval_position_2" gabor_circ gabor_047_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_48_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_047_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1942 2992 2192 fixation_cross gabor_130 gabor_168 gabor_111 gabor_024 gabor_130 gabor_168 gabor_111_alt gabor_024_alt "2_49_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2200_gabor_patch_orientation_130_168_111_024_target_position_1_2_retrieval_position_1" gabor_130_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_49_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_130_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1892 2992 2192 fixation_cross gabor_048 gabor_163 gabor_075 gabor_033 gabor_048_alt gabor_163 gabor_075 gabor_033_alt "2_50_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_048_163_075_033_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_120_framed gabor_circ blank blank blank blank fixation_cross_white "2_50_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1992 2992 1892 fixation_cross gabor_015 gabor_090 gabor_050 gabor_174 gabor_015_alt gabor_090 gabor_050_alt gabor_174 "2_51_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1900_gabor_patch_orientation_015_090_050_174_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_124_framed blank blank blank blank fixation_cross_white "2_51_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2192 2992 2092 fixation_cross gabor_143 gabor_178 gabor_093 gabor_054 gabor_143 gabor_178_alt gabor_093_alt gabor_054 "2_52_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2100_gabor_patch_orientation_143_178_093_054_target_position_1_4_retrieval_position_1" gabor_007_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_52_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2142 2992 2492 fixation_cross gabor_052 gabor_019 gabor_086 gabor_168 gabor_052 gabor_019_alt gabor_086_alt gabor_168 "2_53_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2500_gabor_patch_orientation_052_019_086_168_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_086_framed gabor_circ blank blank blank blank fixation_cross_white "2_53_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_086_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1892 2992 2542 fixation_cross gabor_013 gabor_047 gabor_180 gabor_121 gabor_013_alt gabor_047 gabor_180_alt gabor_121 "2_54_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2550_gabor_patch_orientation_013_047_180_121_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_white "2_54_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 2142 2992 2042 fixation_cross gabor_132 gabor_165 gabor_076 gabor_055 gabor_132 gabor_165 gabor_076_alt gabor_055_alt "2_55_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2050_gabor_patch_orientation_132_165_076_055_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_076_framed gabor_circ blank blank blank blank fixation_cross_white "2_55_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_076_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 1992 fixation_cross gabor_025 gabor_004 gabor_087 gabor_115 gabor_025_alt gabor_004 gabor_087_alt gabor_115 "2_56_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_025_004_087_115_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_164_framed blank blank blank blank fixation_cross_white "2_56_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2092 fixation_cross gabor_059 gabor_013 gabor_175 gabor_129 gabor_059 gabor_013 gabor_175_alt gabor_129_alt "2_57_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2100_gabor_patch_orientation_059_013_175_129_target_position_1_2_retrieval_position_2" gabor_circ gabor_149_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_57_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_2" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1742 2992 2342 fixation_cross gabor_150 gabor_043 gabor_115 gabor_131 gabor_150_alt gabor_043 gabor_115 gabor_131_alt "2_58_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_150_043_115_131_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_068_framed gabor_circ blank blank blank blank fixation_cross_white "2_58_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 1942 fixation_cross gabor_092 gabor_113 gabor_039 gabor_154 gabor_092_alt gabor_113_alt gabor_039 gabor_154 "2_59_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_1950_gabor_patch_orientation_092_113_039_154_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_039_framed gabor_circ blank blank blank blank fixation_cross_white "2_59_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_039_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2242 2992 2092 fixation_cross gabor_047 gabor_062 gabor_137 gabor_175 gabor_047 gabor_062_alt gabor_137_alt gabor_175 "2_60_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_047_062_137_175_target_position_1_4_retrieval_position_1" gabor_047_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_60_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_047_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2392 fixation_cross gabor_111 gabor_128 gabor_154 gabor_039 gabor_111 gabor_128_alt gabor_154_alt gabor_039 "2_61_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2400_gabor_patch_orientation_111_128_154_039_target_position_1_4_retrieval_position_1" gabor_064_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_61_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_064_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 64 292 292 399 125 1842 2992 1942 fixation_cross gabor_041 gabor_122 gabor_085 gabor_155 gabor_041 gabor_122 gabor_085_alt gabor_155_alt "2_62_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_300_300_399_1850_3000_1950_gabor_patch_orientation_041_122_085_155_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_155_framed blank blank blank blank fixation_cross_white "2_62_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_155_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2142 2992 2142 fixation_cross gabor_127 gabor_005 gabor_146 gabor_058 gabor_127 gabor_005_alt gabor_146_alt gabor_058 "2_63_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2150_gabor_patch_orientation_127_005_146_058_target_position_1_4_retrieval_position_1" gabor_127_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_63_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_127_retrieval_position_1" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1742 2992 2192 fixation_cross gabor_027 gabor_084 gabor_153 gabor_064 gabor_027_alt gabor_084 gabor_153_alt gabor_064 "2_64_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2200_gabor_patch_orientation_027_084_153_064_target_position_2_4_retrieval_position_2" gabor_circ gabor_084_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_64_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_084_retrieval_position_2" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 1792 2992 2392 fixation_cross gabor_145 gabor_011 gabor_085 gabor_118 gabor_145 gabor_011_alt gabor_085 gabor_118_alt "2_65_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_2400_gabor_patch_orientation_145_011_085_118_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_038_framed gabor_circ blank blank blank blank fixation_cross_white "2_65_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 61 292 292 399 125 2092 2992 2342 fixation_cross gabor_075 gabor_027 gabor_004 gabor_116 gabor_075 gabor_027_alt gabor_004 gabor_116_alt "2_66_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_075_027_004_116_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_050_framed gabor_circ blank blank blank blank fixation_cross_white "2_66_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_050_retrieval_position_3" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_050 gabor_076 gabor_125 gabor_156 gabor_050_alt gabor_076 gabor_125_alt gabor_156 "2_67_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_050_076_125_156_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_156_framed blank blank blank blank fixation_cross_white "2_67_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_156_retrieval_position_4" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1892 2992 2592 fixation_cross gabor_110 gabor_164 gabor_057 gabor_004 gabor_110_alt gabor_164 gabor_057 gabor_004_alt "2_68_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1900_3000_2600_gabor_patch_orientation_110_164_057_004_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_143_framed blank blank blank blank fixation_cross_white "2_68_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_143_retrieval_position_4" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 62 292 292 399 125 2092 2992 2542 fixation_cross gabor_044 gabor_074 gabor_158 gabor_006 gabor_044 gabor_074_alt gabor_158 gabor_006_alt "2_69_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_044_074_158_006_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_158_framed gabor_circ blank blank blank blank fixation_cross_white "2_69_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_3" 2 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
44 63 292 292 399 125 1842 2992 2242 fixation_cross gabor_161 gabor_056 gabor_104 gabor_075 gabor_161_alt gabor_056 gabor_104 gabor_075_alt "2_70_Encoding_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_300_300_399_1850_3000_2250_gabor_patch_orientation_161_056_104_075_target_position_2_3_retrieval_position_1" gabor_022_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "2_70_Retrieval_Working_Memory_MEG_P5_RL_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_022_retrieval_position_1" 1 58.69 58.69 -58.69 58.69 -58.69 -58.69 58.69 -58.69;
};
# 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;
};
|
0490699e0391b1152e4d777a218c2675c43ff2f4
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1523/CH4/EX4.80/ex4_80.sce
|
40b97226f63d6a0cac89284148edec9071524c13
|
[] |
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
| 959
|
sce
|
ex4_80.sce
|
//AC Circuits : example 4.80 :(pg 4.65)
R=10;
L=0.2;
C=40*10^-6;
V=100;
f0=(1/(2*%pi*sqrt(L*C)));
I0=(V/R);
P0=((I0^2)*R);
pf=1;
Vr=(R*I0);
Vl=((2*%pi*f0*L)*I0);
Vc=((1/(2*%pi*f0*C))*I0);
Q=((1/R)*sqrt(L/C));
f1=(f0-(R/(4*%pi*L)));
f2=(f0+(R/(4*%pi*L)));
printf("\nR=10 Ohm \nL=0.2 H \nC=40uF \nV=100 V");
printf("\n(i) f0= 1/2*pi*sqrt(LC) =%.1f Hz",f0); //resonant frequency
printf("\n(ii) I0= V/R =%.f A",I0); //current
printf("\n(iii) P0=(I0^2)*R =%.f W",P0);//power
printf("\n(iv) pf=1");//power factor
printf("\n(v) Rv = R.I =%.f V",Vr);//voltage across resistor
printf("\n Lv = XL.I =%.1f V",Vl);//voltage across inductor
printf("\n Cv = XC.I =%.1f V",Vc); //voltage across capacitor
printf("\n(vi) Q =1/R*sqrt(L/C)=%.2f",Q);//Quality factor
printf("\n(vii)f1 = f0-R/4.pi.L = %.2f Hz",f1); //half power points
printf("\nf2=f0+R/4.pi.L = %.1f Hz",f2);
// x initialisation
x=[-1:0.1:2*%pi];
//simple plot
plot(sin(x))
|
88b0234bacb4d5c27783e53e4c3a6ccbe8ba0278
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3136/CH9/EX9.2/Ex9_2.sce
|
0efa44d7fdc20ac51fe668eaf3ba4218e60d4cc3
|
[] |
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
|
Ex9_2.sce
|
clear; clc;
disp("To use Figure 9.8,with Qf=ΣU^2/delta_Hs=2*g_c*lambda^2*R_H")
disp("The value of R_H can be estimated with equation 8.4.")
disp("Using k=1.3 for steam and suusming ETA_p=0.90 we have ETAad=[1-(p_e/p_i)^(ETAp*(k-1)/k)]/[1-(p_e/p_i)^(k-1)/k]=0.931")
ETA_ad=0.931
ETA_p=0.90
R_H=ETA_ad/ETA_p
printf(" R_H=ETA_ad/ETA_p= %0.3f",R_H)
disp("For impulse stages,the optimal efficiencies occur at lambda=U/V2=sinα2/2=0.47 with alpha2=70 degrees")
QF=2*25052*(0.47^2)*1.035
printf(" So Qf can be calculated as %0.0f",QF)
disp("From figure 9.8, the efficiency can be estimated as ETA=83%")
disp("From the Mollier diagram in figure A1 we have hi=1525 Btu/lbm,hse=1150 Btu/lbm,with s_i=s_es=1.8Btu/lb-R")
delta_Hs=1525-1150
printf(" Hence delta_Hs=%0.0f Btu/lbm",delta_Hs)
summation_sqrU =11455*375
printf("\n So we have ΣU^2=%0.0f ((ft/s)^2)",summation_sqrU)
disp("With 10 identical stages,we have U^2=429562")
sqrU=429562
U=sqrt(sqrU)
printf(" Thus U= %0.0f ft/s",U)
omega=3600*%pi/30
D=2*U/omega
printf("\n The turbine diameter D= %0.3f ft",D)//The answer has been incorrectly rounded off to 3.47 in the book. A more accurate answer is provided here.
|
a667286f6762ae80888392eaf01400193a89ab6c
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1646/CH3/EX3.1/Ch03Ex1.sce
|
901c670e2800f1239e20facafb7425092b3ddafd
|
[] |
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
| 530
|
sce
|
Ch03Ex1.sce
|
// Scilab Code Ex3.1: Page:132 (2011)
clc;clear;
m = 5.32e-26; // Mass of one oxygen molecule, kg
k_B = 1.38e-23; // Boltzmann constant, J/K
T = 200; // Temperature of the system, K
v = 100; // Speed of the oxygen molecules, m/s
dv = 1; // Increase in speed of the oxygen molecules, m/s
P = 4*%pi*(m/(2*%pi*k_B*T))^(3/2)*exp(-m*v^2/(2*k_B*T))*v^2*dv;
printf("\nThe probability that the speed of oxygen molecule is %4.2e", P) ;
// Result
// The probability that the speed of oxygen molecule is 6.13e-04
|
55e576d7b27ccf68652d37c8d41bee486acebcff
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/605/CH12/EX12.7/12_7.sce
|
ebd1c8f320399c0b6fa5120fb614b2e49371960b
|
[] |
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
| 357
|
sce
|
12_7.sce
|
Vin=2 //Volt
Vosc=2 //Volt
VPD=2 //volt
Ein=0.75
Eosc=0.75
Vd=1
dW=2*%pi*10^7
Km=VPD/(Vin*Vosc)
printf("\nKm=%.1f V^-1",Km)
Kd=0.5*Km*Ein*Eosc
Ko=dW/Vd
//(a)
qd=2*%pi*(11-10)*10^6/(Ko*Kd)
printf("\n(a)qd=%.4f rad = %.4f degree\n",qd,qd*180/%pi)
//(b)
qd=2*%pi*(9-10)*10^6/(Ko*Kd)
printf("\n(b)qd=%.4f rad = %.4f degree",qd,qd*180/%pi)
|
608ebebe6c6a4a293de90ffc22485c39003a2672
|
bae725b750433ba5d58470784eeb87687023da7e
|
/sci_gateway/fortran/loader.sce
|
67f1ce72ffeec0b4a3144631d30bfa0b3f1219a4
|
[
"MIT"
] |
permissive
|
aamadou/IsItChaos
|
eac61da272b4fb22f83bdceaceb5774385f481e5
|
def74ddd5710898f876a9a7d39916e5cc1a8b6b5
|
refs/heads/master
| 2016-08-04T21:00:17.832904
| 2014-03-24T13:18:39
| 2014-03-24T13:18:39
| null | 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 927
|
sce
|
loader.sce
|
// This file is released under the 3-clause BSD license. See COPYING-BSD.
// Generated by builder.sce : Please, do not edit this file
// ----------------------------------------------------------------------------
//
if win64() then
warning(_("This module requires a Windows x86 platform."));
return
end
//
skeleton_fortran_path = get_absolute_file_path('loader.sce');
//
// ulink previous function with same name
[bOK, ilib] = c_link('skeleton_fortran');
if bOK then
ulink(ilib);
end
//
link(skeleton_fortran_path + filesep() + '../../src/fortran/libfsum' + getdynlibext());
list_functions = [ 'fortran_sum';
];
addinter(skeleton_fortran_path + filesep() + 'skeleton_fortran' + getdynlibext(), 'skeleton_fortran', list_functions);
// remove temp. variables on stack
clear skeleton_fortran_path;
clear bOK;
clear ilib;
clear list_functions;
// ----------------------------------------------------------------------------
|
d7452855269cc3253d2575b9af3b9be52a69dd81
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3885/CH5/EX5.13/Ex5_13.sci
|
3428231346fbb8cef3c009328917ce065774f00d
|
[] |
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
| 572
|
sci
|
Ex5_13.sci
|
//control systems by Nagoor Kani A
//Edition 3
//Year of publication 2015
//Scilab version 6.0.0
//operating systems windows 10
// Example 5.13
clc;
clear;
s=poly(0,'s')//defines s as poly nomial variable
h=syslin('c',(230/(s*(s+2)*(s+10))))//the value of K lies between 0 to 240 .the given transfer function assigned to variable h
nyquist(h)
show_margins(h,'nyquist')
//calculation of K
//when -0.00417K=-1the contour passes through -1+j0 and the corrospondig value of K is the limiting value of k for stabilty
K=1/0.00417
disp(K,'the value of K is')
|
f8a43ae6f80180cd59f571bd42037c50a38b8d95
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2141/CH12/EX12.1/Ex12_1.sce
|
d8bf44aa9faadeca505a7b21b8db6a1549280358
|
[] |
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
| 315
|
sce
|
Ex12_1.sce
|
clc
//initialisation of variables
P=12.5 //mole air
n=47.0 //mole fuel
p1=1//mole air
a=28.95 //mole air
m=114.2//mole fuel
//CALCULATIONS
AF=P+n/p1//mole air/mole fuel
A=AF*a/m//lbm air /lbm fuel
//RESULTS
printf('The theoretical air fuel ratio for the combustion of octane=% f lbm air/mole fuel',A)
|
7ea872c9ea35cf8c76085c071172b4199ce8bcfc
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2708/CH3/EX3.8/ex_3_8.sce
|
b06a200bcc0132a986ead8ccb7ce9567ca6570f8
|
[] |
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
| 315
|
sce
|
ex_3_8.sce
|
//Example 3.8 // Phase retardation
clc;
clear;
//given data :
Uo=1.5508;//refractive index for O ray
Ue=1.5418;//refractive index for E ray
w=5D-7;// wavelength of light used in m
t=.000032;// thickness of plate in m
p=2*%pi*(Uo-Ue)*t/w;//phase retardation in radian
disp(p,"phase retardation in radian")
|
eb13fddb36b0391701801cd48fc6003725e5289d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3293/CH8/EX8.13/Ex8_13.sce
|
82928c49327f2bdb638c75d1c6915ffdcdc620d7
|
[] |
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
| 543
|
sce
|
Ex8_13.sce
|
//page 283
//Example 8.13
clc;
clear;
close;
A = rand(2,2);
A(1,:) = A(1,:) + 1; //so b1 is not equal to zero
a = A(1,1);
b = A(1,2);
c = A(2,1);
d = A(2,2);
b1 = A(1,:);
b2 = A(2,:);
disp(A,'A = ');
disp(b1,'b1 = ');
disp(b2,'b2 = ');
disp('Applying the orthogonalization process to b1,b2:');
a1 = [a b];
a2 = (det(A)/(a^2 + b^2))*[-b' a'];
disp(a1,'a1 = ');
disp(a2,'a2 = ');
disp('a2 is not equal to zero if and only if b1 and b2 are linearly independent.');
disp('That is, if determinant of A is non-zero.');
//end
|
a420a2d3e2bd4995222182703f5ff599cae2d4ea
|
244971ae8af51184d278cdc2be1c80775413adae
|
/SSSoCoupler.sci
|
a060692c0eb969af7b5bd5ac0c61cafd788c9ffa
|
[] |
no_license
|
MSCA-SIMFREE/748767
|
5879f1f139b608c7cd2f1bd62325b281c9c1e7d1
|
4726206e514f1e47e939e73b9339c056057866db
|
refs/heads/master
| 2020-12-27T15:21:13.646362
| 2020-02-03T11:40:00
| 2020-02-03T11:40:00
| 237,951,088
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,339
|
sci
|
SSSoCoupler.sci
|
// The code was developed under Horizon2020 Framework Programme
// Project: 748767 — SIMFREE
function [Out1,Out2]=SSSoCoupler(In1,In2,Coupling)
// Optical Coupler
//
// Calling Sequence
// [Out1,Out2]=SSSoCoupler(In1,In2,Coupling)
//
// Parameters
// In1 : Optical Input 1
// In2 : Optical Input 2
// Coupling : Percentage of power coupled across the coupler
// Out1 : Optical Output 1
// Out2 : Optical Output 2
//
// Description
// Cross-coupled fields experience a 90-degree phase lag with respect to through coupled fields.
// The input parameter Coupling sets the % of power that is coupled across the coupler, i.e. from input 1 (2) to output 2 (1).
// An example of the use of the Coupler component is in simulating Mach-Zehnder interferometers.
// A lossy coupler can be formed by adding Attenuators to its inputs or outputs.
//
global MNT;
[lhs,rhs]=argn(0);
if rhs<2 then
error("Expect at least two argument");
end
if rhs==2 then
Coupling=50;
end
if length(In1)==0 then; In1=zeros(MNT,2); end
if length(In2)==0 then; In2=zeros(MNT,2); end
A=sqrt(Coupling/100);
B=sqrt(1-Coupling/100);
Out1=In1*B+SSSoPhaseShift(In2*B, 90);
Out2=SSSoPhaseShift(In1*A, 90)+In2*A;
endfunction
|
a37dab275b484d941770bd401e94e2caea2e4859
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1871/CH4/EX4.11/Ch04Ex11.sce
|
a34d39d996276a94ce0e1fbfb9c9fb7bd0ad59d7
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 760
|
sce
|
Ch04Ex11.sce
|
// Scilab code Ex4.11: Pg:148 (2008)
clc;clear;
x0 = 12.34; // Position of zero order fringe, mm
Lambda = 6000; // Wavelength of light, angstrom
Lambda_prime = 5000; // New wavelength of light, angstrom
omega = 0.239; // Fringe width, mm
omega_prime = Lambda_prime/Lambda*omega; // New fringe width, mm
d_20 = 20*omega_prime; // Separation of 20th fringe, mm
x_20 = [d_20, -d_20]; // Position of 20th order fringe, mm
x = x0 + x_20; // Positions of 20th order fringe relative to zero order fringe, mm
printf("\nThe positions of 20th order fringe relative to zero order fringe are %5.2f mm or %4.2f mm", x(1), x(2));
// Result
// The positions of 20th order fringe relative to zero order fringe are 16.32 mm or 8.36 mm
|
0fb6c1afc2c578a466371b2cf05bb8bca42d9f87
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1106/CH2/EX2.5/ex2_5.sce
|
44894fe1241a4e9a90fd722d0a2a28606faf740c
|
[] |
no_license
|
FOSSEE/Scilab-TBC-Uploads
|
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
|
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
|
refs/heads/master
| 2020-04-09T02:43:26.499817
| 2018-02-03T05:31:52
| 2018-02-03T05:31:52
| 37,975,407
| 3
| 12
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 310
|
sce
|
ex2_5.sce
|
// Example 2.5, page no-44
clear
clc
Beta=100
R=20000
Vcc=5
Vbe=0.6
Iref=(Vcc-Vbe)/R
N=3
Ic=Iref*(1+ 4/Beta)
Ic1=Iref*(Beta)/(Beta+N+1)
Ic2=Iref*(Beta)/(Beta+N+1)
Ic3=Iref*(Beta)/(Beta+N+1)
Iref=Iref/10^-3
printf("Iref= %.2f mA",Iref)
Ic1=Ic1/10^-3
printf("\nIc1=Ic2=Ic3= %.3f mA",Ic1)
|
5acade8507b380a19639ce0a8de10e0d646199dd
|
4af7d26a4959553d9a2cee1a78878ee960599382
|
/test_cases/test15.tst
|
8c85288d09a526a46efac264296f70a5b6e6b006
|
[] |
no_license
|
CJ8664/chord_protocol
|
f61168ceea224e47785e56a3263eda89da7dc3df
|
30b57463cfd190e9dd5f057629b69ffbb6edb7b2
|
refs/heads/master
| 2020-04-11T06:07:46.875416
| 2018-11-02T03:06:34
| 2018-11-02T03:06:34
| 161,571,340
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 824
|
tst
|
test15.tst
|
# Adding to case 2 everything is stable and global information is correct
# Drop one node from middle, now fix to update finger_table
# Now add 1 again, stab and fix. everything should be consistent
add 0
add 1
add 2
add 3
join 1 0
join 2 0
join 3 0
list
show 0
show 1
show 2
show 3
# First cycle of stab fix
stab 0
stab 1
stab 2
stab 3
fix 0
fix 1
fix 2
fix 3
# Second cycle of stab fix
stab 0
stab 1
stab 2
stab 3
fix 0
fix 1
fix 2
fix 3
# Third cycle of stab fix
stab 0
stab 1
stab 2
stab 3
fix 0
fix 1
fix 2
fix 3
# Fourth cycle of stab fix
stab 0
stab 1
stab 2
stab 3
fix 0
fix 1
fix 2
fix 3
show 0
show 1
show 2
show 3
drop 1
show 0
show 2
show 3
fix 0
fix 2
fix 3
show 0
show 2
show 3
add 1
join 1 0
show 0
show 1
show 2
show 3
stab 1
stab 0
fix 0
fix 1
fix 2
fix 3
show 0
show 1
show 2
show 3
end
|
b9301a6d9a4600df353ac0b1494d0247145189c0
|
fcd4bce0080771389b4a69338ed6443153942183
|
/cores/n64/mupen64plus-rsp-paraLLEl/lightning/check/alu_add.tst
|
16cdf38a167719d46d8d4f7d601b015afc7f125e
|
[
"LGPL-3.0-only",
"GPL-3.0-only",
"GFDL-1.1-or-later",
"GPL-1.0-or-later",
"LicenseRef-scancode-other-copyleft",
"GFDL-1.1-only",
"MIT",
"LGPL-2.1-only",
"MPL-1.1",
"LicenseRef-scancode-mame",
"Zlib",
"GPL-2.0-only",
"LGPL-2.1-or-later",
"MPL-2.0",
"CC-PDDC",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-proprietary-license",
"LicenseRef-scancode-brian-gladman-3-clause",
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla"
] |
permissive
|
wulfebw/retro
|
d4fcf9229b257b3c495f54b1aeb3ea36004ae4aa
|
dad4b509e99e729e39a2f27e9ee4120e3b607f58
|
refs/heads/master
| 2022-10-23T07:17:55.320585
| 2020-06-12T01:38:06
| 2020-06-12T01:38:06
| 260,832,205
| 8
| 1
|
MIT
| 2020-06-12T01:38:08
| 2020-05-03T05:06:17
|
C
|
UTF-8
|
Scilab
| false
| false
| 1,549
|
tst
|
alu_add.tst
|
#include "alu.inc"
.code
prolog
#define ADD(N, I0, I1, V) ALU(N, , add, I0, I1, V)
ADD(0, 0x7fffffff, 1, 0x80000000)
ADD(1, 1, 0x7fffffff, 0x80000000)
ADD(2, 0x80000000, 1, 0x80000001)
ADD(3, 1, 0x80000000, 0x80000001)
ADD(4, 0x7fffffff, 0x80000000, 0xffffffff)
ADD(5, 0x80000000, 0x7fffffff, 0xffffffff)
ADD(6, 0x7fffffff, 0, 0x7fffffff)
ADD(7, 0, 0x7fffffff, 0x7fffffff)
#if __WORDSIZE == 32
ADD(8, 0x7fffffff, 0xffffffff, 0x7ffffffe)
ADD(9, 0xffffffff, 0x7fffffff, 0x7ffffffe)
ADD(10, 0xffffffff, 0xffffffff, 0xfffffffe)
#else
ADD(8, 0x7fffffff, 0xffffffff, 0x17ffffffe)
ADD(9, 0xffffffff, 0x7fffffff, 0x17ffffffe)
ADD(10, 0xffffffff, 0xffffffff, 0x1fffffffe)
ADD(11, 0x7fffffffffffffff, 1, 0x8000000000000000)
ADD(12, 1, 0x7fffffffffffffff, 0x8000000000000000)
ADD(13, 0x8000000000000000, 1, 0x8000000000000001)
ADD(14, 1, 0x8000000000000000, 0x8000000000000001)
ADD(15, 0x7fffffffffffffff, 0x8000000000000000, 0xffffffffffffffff)
ADD(16, 0x8000000000000000, 0x7fffffffffffffff, 0xffffffffffffffff)
ADD(17, 0x7fffffffffffffff, 0xffffffffffffffff, 0x7ffffffffffffffe)
ADD(18, 0x7fffffffffffffff, 0x7fffffffffffffff, 0xfffffffffffffffe)
ADD(19, 0xffffffffffffffff, 0xffffffffffffffff, 0xfffffffffffffffe)
#endif
#undef ADD
#define ADD(N, T, I0, I1, V) FOP(N, T, add, I0, I1, V)
ADD(0, _f, -0.5, 0.5, 0.0)
ADD(1, _f, 0.25, 0.75, 1.0)
ADD(0, _d, -0.5, 0.5, 0.0)
ADD(1, _d, 0.25, 0.75, 1.0)
prepare
pushargi ok
ellipsis
finishi @printf
ret
epilog
|
3cada3810d009f554b63971d1ba34180f729d3a6
|
4a1effb7ec08302914dbd9c5e560c61936c1bb99
|
/Project 2/Experiments/FURIA-C/results/FURIA-C.vowel-10-1tra/result9s0.tst
|
827aaabd5f4b7f2fb9c9b2627b5818c6be87f519
|
[] |
no_license
|
nickgreenquist/Intro_To_Intelligent_Systems
|
964cad20de7099b8e5808ddee199e3e3343cf7d5
|
7ad43577b3cbbc0b620740205a14c406d96a2517
|
refs/heads/master
| 2021-01-20T13:23:23.931062
| 2017-05-04T20:08:05
| 2017-05-04T20:08:05
| 90,484,366
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 979
|
tst
|
result9s0.tst
|
@relation vowel
@attribute TT integer[0,1]
@attribute SpeakerNumber integer[0,14]
@attribute Sex integer[0,1]
@attribute F0 real[-5.211,-0.941]
@attribute F1 real[-1.274,5.074]
@attribute F2 real[-2.487,1.431]
@attribute F3 real[-1.409,2.377]
@attribute F4 real[-2.127,1.831]
@attribute F5 real[-0.836,2.327]
@attribute F6 real[-1.537,1.403]
@attribute F7 real[-1.293,2.039]
@attribute F8 real[-1.613,1.309]
@attribute F9 real[-1.68,1.396]
@attribute Class{0,1,2,3,4,5,6,7,8,9,10}
@inputs TT,SpeakerNumber,Sex,F0,F1,F2,F3,F4,F5,F6,F7,F8,F9
@outputs Class
@data
10 10
3 3
7 7
4 4
3 3
1 9
2 2
5 10
0 9
3 3
0 0
10 10
2 2
8 8
0 0
5 5
6 4
7 7
9 8
4 4
1 1
1 2
7 7
9 9
2 2
5 2
9 8
8 8
9 8
2 2
4 4
9 9
10 10
3 3
6 6
8 8
2 3
0 1
6 6
5 10
6 6
10 10
4 5
9 9
1 1
4 4
7 7
5 5
6 6
1 1
10 10
0 0
6 6
10 10
0 0
8 9
3 3
4 4
8 8
3 3
1 2
8 9
2 2
10 10
1 1
4 4
5 5
9 8
0 0
7 7
8 7
2 2
5 5
4 4
7 6
10 10
0 0
7 6
2 2
5 10
6 6
3 3
1 1
6 6
7 7
3 3
8 8
9 9
0 0
1 1
2 2
3 3
4 4
5 4
6 6
7 6
8 8
9 9
10 10
|
9d989e5b982b90e4eb867457710c3127c55cf2d2
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/317/CH13/EX13.15/example15.sce
|
634798a24e568c7461b3765924e0dacd73c82992
|
[] |
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
| 531
|
sce
|
example15.sce
|
// calculate voltage gain
// Electronic Principles
// By Albert Malvino , David Bates
// Seventh Edition
// The McGraw-Hill Companies
// Example 13-15, page 450
clear; clc; close;
// Given data
Rs1=220;// in ohms
Rs2=780;// in ohms
Rl=3*10^3;// in ohms
gm=2000*10^-6;// transconductance in Seimen
// Calculations
Rs=Rs1+Rs2;// total dc source resistance in ohms
rs=Rs*Rl/(Rs+Rl);// ac drain resistance in ohms
Av=gm*rs/(1+(gm*rs));// voltage gain
disp(Av,"Votage gain=")
// Result
// voltage gain is 0.6
|
b99e7959156e82a5411386260c5912966d33e5e8
|
59e7c95649eb8894e1d6f0bcac3ca7ea2b023217
|
/Jacobi.sce
|
94bdb25311778cf8718ae28ff9724428f7d5e976
|
[] |
no_license
|
nascimento-luciano/Scilab-Matlab
|
cb5ee9d97df3ed0f4311573df0fd37a88b3394d8
|
1cba42b68cc7954ff4c7dd6b13c7d8e6bd3d039e
|
refs/heads/main
| 2023-03-19T21:06:18.691193
| 2021-03-18T00:57:29
| 2021-03-18T00:57:29
| 348,877,701
| 1
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 693
|
sce
|
Jacobi.sce
|
A = [10 2 1; 1 5 1; 2 3 10];
b = [7 -8 6];
n = 3;
x_new = zeros(1,n);
x_old = zeros(1,n);
NMAX = 20;
tol = 0.0001;
x_old = [0.7 -1.6 0.6];
for k=1:NMAX
// iteracao do metodo de Jacobi
for i=1:n
soma = 0.0;
for j=[1:i-1,i+1:n]
soma = soma + A(i,j)*x_old(j);
end
x_new(i) = (b(i)-soma)/A(i,i);
end
// criterio de parada
if max(abs(x_new - x_old)) < tol then
disp('O metodo convergiu para a solucao:')
disp(x_new)
disp('Numero de iteracoes:')
disp(k)
end
if k == NMAX then
disp('O metodo nao convergiu...')
end
x_old = x_new;
end
|
d9f6a2d560da6013b503b27ee906141b1144df1d
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/1694/CH1/EX1.4/EX1_4.sce
|
9b4d29f12edeb44a8bcb6effec2679ea2a4a376f
|
[] |
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
| 235
|
sce
|
EX1_4.sce
|
clear;
clc;
printf("\nEx1.4\n");
//page no.-8
//given
a=3.61;.......//lattice constant in Angstrom
r=(2^(0.5)*a)/4........//for F.C.C. structure radius is given by this
printf("\nradius of copper atom is 12.8 angstrom\n");
|
b30755f4ae76e2cf4a0e33679e1b6b004f1cec9e
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/3204/CH21/EX21.2/Ex21_2.sce
|
a312deff78e4ab6178b47c6cc62c72bc7a89deb9
|
[] |
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
| 424
|
sce
|
Ex21_2.sce
|
// Initilization of variables
r=1 // m // radius of the cylinder
v_c=20 // m/s // velocity of the cylinder at its centre
// Calculations
// The velocity of point E is given by using the triangle law as,
v_e=sqrt(2)*v_c // m/s
// Similarly the velocity at point F is given as,
v_f=2*v_c // m/s
// Results
clc
printf('The velocity of point E is %f m/s \n',v_e)
printf('The velocity of point F is %f m/s \n',v_f)
|
c65c64943d99330139fd5626e22f6d97d23fe6f7
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/605/CH5/EX5.7/5_7.sce
|
a9531645a5c305425ef1cef99aa94a00f222cf4f
|
[] |
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
| 128
|
sce
|
5_7.sce
|
a=2.286*10^-2
b=1.016*10^-2
f=9.379*10^9
c=1/2/sqrt((9379/300)^2-(1/2/a)^2)
printf("\nc=%.5f m = %.4f cm",c,c*100)
|
56d13d9bf3d4006e4bad06ba1f411db8209f161f
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/62/CH3/EX3.16/ex_3_16.sce
|
a31f0f56f116e2fc4a3688ec05f5d39c984ac433
|
[] |
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
| 252
|
sce
|
ex_3_16.sce
|
clear;
syms t s
x=1/(s+1)
f1=ilaplace(x)
disp(f1*'u(t)',"a) x(t)=")
y=-1/(s+1)
f2=ilaplace(y)
disp(f2*'u(-t)',"b) x(t)=")
z=s/(s^2+4)
f3=ilaplace(z)
disp(f3*'u(t)',"c) x(t)=")
zz=(s+1)/((s+1)^2+4)
f4=ilaplace(zz)
disp(f4*'u(t)',"d) x(t)=")
|
880bb04aea722601ece5f9f648a249454f910832
|
449d555969bfd7befe906877abab098c6e63a0e8
|
/2615/CH12/EX53.4/53.sce
|
16d7426775519d5e509df891ddab65f416e0abaf
|
[] |
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
| 220
|
sce
|
53.sce
|
clc
//initialisation of variables
v=60//m/sec
v1=16.6//m/sec
r=300//m
g=9.8//m/sec
//CALCULATIONS
R=(v1^4)/((g^2)*(r^2))//km/hr
//RESULTS
printf('the ignored thus greatly simplifying the equation=% f km/hr',R)
|
743a67e3edfe5bd299d9a231a74ffdae6442c2b1
|
3d1c119f7b9b17a6c6222991c2ebb3ddc4be097a
|
/leverrier.sce
|
4fa76b974bac3d7bfc7dac2c2858e9f2125fc98f
|
[] |
no_license
|
pzdd/Scilab-Folder
|
99faaf58b5372d76110b4caa65f71d8c7487c6d9
|
47d47b7920e75d7195244a134ab2d175be40aab5
|
refs/heads/master
| 2021-01-10T04:47:32.893552
| 2016-02-10T14:20:11
| 2016-02-10T14:20:11
| 51,444,768
| 0
| 0
| null | null | null | null |
UTF-8
|
Scilab
| false
| false
| 1,228
|
sce
|
leverrier.sce
|
//Algoritmo Leverrier - Autor: Geraldo Laurentino da Silva Neto
//Trabalho da disciplina de Modelagem Integrada UFRN
//casos de teste
A=[-1 0 0;0 0 -1;0 1 -1]
//A = [0 -400;25 -250]
//identifica a ordem da matriz
y = length(diag(A))
//cria as variaveis que iram armazenar os valores de R e a(saida do trace)
for i=0:(y-1)
execstr(strcat(["R",string(i),"=0"]))
execstr(strcat(["azin",string(i),"=0"]))
end
R0=eye(A)
cont=0
while(cont < 3)
//ARcont = A*Rcont
execstr(strcat(["AR",string(cont), "= A*R",string(cont)]))
//trace
execstr(strcat(["x = diag(AR",string(cont),")"]))
for i=1:length(x)
execstr(strcat(["azin",string(cont),"=azin",string(cont),"+x(",string(i),")"]))
end
execstr(strcat(["azin",string(cont),"=-azin",string(cont),"/(cont+1)"]))
//fim trace
m_id = eye(A)
//Rcont+1 = ARcont + m_id*azincont
execstr(strcat(["R",string(cont+1)," = AR",string(cont),"+ m_id*azin",string(cont)]))
cont = cont + 1
end
s = poly(0,"s")
//delta
delta = s^(y)
for i=0:(y-1)
execstr(strcat(["delta = delta + s^",string((y-1)-i),"*azin",string(i)]))
end
//adjunta
adj = 0
for i=0:(y-1)
execstr(strcat(["adj= adj + R",string(i),"*s^",string(y-(i+1))]))
end
resultado = adj/delta
disp("Adjunta",adj)
disp("Delta",delta)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.