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
e9ab52f8ce1437b26c870c2ac7fb990bfb9e0745
449d555969bfd7befe906877abab098c6e63a0e8
/3648/CH6/EX6.1/Ex6_1.sce
0064532bf9417e4f3e2a65f7ec614b90e46dbf24
[]
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
304
sce
Ex6_1.sce
//Example 6_1 clc(); clear; //To calculate how large is the average force retarding its motion m=1500 //units in Kg vf=15 //units in meters/sec v0=20 //units in meters/sec t=3 //units in sec f=((m*vf)-(m*v0))/t //Units in Newtons printf("The average retarding force is F=%d Newtons",f)
9005a2f65bb403ce8dd5ffe7425f13fd9659031b
449d555969bfd7befe906877abab098c6e63a0e8
/2321/CH8/EX8.3.1/EX8_3_1.sce
279f0bd11569efae4305ca4428ee98b401295c78
[]
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
470
sce
EX8_3_1.sce
//Example No. 8.3.1 clc; clear; close; format('v',7); Zcs=73+%i*42.5;//Ω(Impedence of complementry structure) Eta=120*%pi;//(Constant for free space) ZS=Eta^2/4/Zcs;//Ω(Input Impedence) disp(ZS,"Input impedence in Ω : "); //At resonance Zcs=73;//Ω(Impedence of complementry structure) Eta=120*%pi;//(Constant for free space) ZS=Eta^2/4/Zcs;//Ω(Input Impedence) disp(ZS,"At resonance, Input impedence in Ω : "); disp("ZS can be rounded to 500 Ω");
476b93b6c0b81729ff91ec9d7c236cc89eba877b
449d555969bfd7befe906877abab098c6e63a0e8
/3669/CH6/EX6.2/2.sce
62f973eabc4f1575b043fb2093e1e7ca1e6ffdad
[]
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
325
sce
2.sce
//Variable declaration epsilon0=8.85*10**-12; A=100*10**-4; //area(m**2) d=1*10**-2; //seperation(m) V=100; //potential(V) //Calculation C=epsilon0*A/d; //capacitance(F) Q=C*V; //charge on plates(C) //Result printf('capacitance is %e F \n',C) printf('charge on plates is %e C \n',Q)
7c6aca98547d298d31bd42291c1ee1a1cd4b9679
449d555969bfd7befe906877abab098c6e63a0e8
/3876/CH11/EX11.1/Ex11_1.sce
afe3e664b026202fe7c0caaad2e9c17bce5073bb
[]
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
551
sce
Ex11_1.sce
//Chapter 11 Thermodynamics Some Basic Concepts clc; clear; //Initialisation of Variables T= 25 //C T1= 75 //C k= 6.45 //cal per mole per degree k1= 1.41*10**-3 //cal per mole per degree k^-1 k2= -8.1*10**-8 //cal per mole per degree k^-2 m= 14 //gms M= 28 //gms //CALCULATIONS Cp= k+k1*(273+T)+k2*(273+T)**2 Cp1= k+k1*(273+T1)+k2*(273+T1)**2 cp= (Cp+Cp1)/2 H= (m/M)*cp*(T1-T) H1= (m/M)*(k*(T1-T)+(k1/2)*((273+T1)**2-(273+T)**2)+(k2/3)*((273+T1)**3-(273+T)**3)) //RESULTS mprintf("Heat required= %.1f cal",H) mprintf("\nValue of dH= %.1f cal",H1)
b5ba849c806226f52c609dd920fd820209f10dc9
449d555969bfd7befe906877abab098c6e63a0e8
/3683/CH5/EX5.9/Ex5_9.sce
593709962e7cd2bb0a8f79250e3aa51ce8780088
[]
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
761
sce
Ex5_9.sce
P=400//in kN b=200//width, in mm sigma_cc=4//in MPa sigma_sc=190//in MPa Lef=3.5//effective length, in m //assume 1% steel Ag=P*10^3/(sigma_cc*0.99+sigma_sc*0.01)//in sq mm D=Ag/b//in mm D=340//round-off, in mm a=Lef*1000/b //as a > 12, it is a long column Cr=1.25-Lef*1000/(48*b)//reduction coefficient sigma_cc=Cr*sigma_cc//in MPa sigma_sc=Cr*sigma_sc//in MPa Asc=(P*1000-sigma_cc*Ag)/(sigma_sc-sigma_cc)//in sq mm //assume 18 mm dia bars n=Asc/(%pi/4*18^2)//no. of bars n=4//round-off //design of links dia=1/4*20//in mm //as dia < 6 mm, provide 6 mm diameter links dia=6//in mm spacing=min(b,16*20,48*dia,300)//in mm mprintf("Column size %d x %d mm\nMain steel =%d-18 mm dia bars\nLinks=6 mm dia links @ %d mm c/c\n", b,D,n,spacing)
f3372b626a6da39fac8e8564a4b2fc264e307f59
449d555969bfd7befe906877abab098c6e63a0e8
/3673/CH8/EX8.7/Ex8_7.sce
e92bb1a80e1826b2a2bdd7c918dd202f3bea7170
[]
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
129
sce
Ex8_7.sce
//Example 8_7 page no:310 clc; L=50*10^-3; C=0.01*10^-6; fr=1/(2*%pi*sqrt(L*C)); disp(fr,"resonant frequency is (in Hz)");
51cbbfc64091940fcb07806f2295d1ab676323c0
449d555969bfd7befe906877abab098c6e63a0e8
/788/CH17/EX17.1.a/17_1_data.sci
1d3c612c1bddfb95eea1bb70929f7e5e70ff0b2b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
445
sci
17_1_data.sci
// Aim:To determine the system accuracy of electrohydraulic servo system // Given: // servo valve gain: G_SV=0.15; //(in^3/s)/mA // cylinder gain: G_cyl=0.20; //in/in^3 // feedback transducer gain: H=4; //V/in // weight of load: W=1000; //lb // mass of load: M=2.59; //lb.(s^2)/in // volume of oil under compression: V=50; //in^3 // system deadband: SD=4; //mA // bulk modulus of oil: beta1=175000; //lb/in^2 // cylinder piston area: A=5; //in^2
af5430e59905e1091a1dc2516b29afc0bd3f0966
449d555969bfd7befe906877abab098c6e63a0e8
/1703/CH3/EX3.1/3_1.sce
263e5aecccb44378f6eaea116f48688a66bbe938
[]
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
595
sce
3_1.sce
clc //initialisation of variables clear hob= 34 //ft hoc= 5 //ft hoa= 50 //ft hod= 80 //ft g= 32.2 //ft/sec^2 A= 2.1 //in^2 A1= 4.8 //in^2 A2= 9.6 //in^2 //CALCULATIONS v= sqrt(2*g*(hod-hoc)) Q= v*A/144 va= v*A/A1 vb= v*A/A2 Va= va^2/(2*g) Vb= vb^2/(2*g) r= hob+hod-hoa-(va^2/(2*g)) r1=hob+hod-hob-(vb^2/(2*g)) //RESULTS printf ('Discharge = %.2f cuses',Q) printf ('\n Velocity head at A = %.2f ft-lb/lb',Va) printf ('\n Velocity head at B = %.2f ft-lb/lb',Vb) printf ('\n Pressure head at A = %.2f ft-lb/lb',r) printf ('\n Pressure head at B = %.2f ft-lb/lb',r1)
204322e2015e4102f0b802dca66f22cc6e948658
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH5/EX5.12/example5_12.sce
c2e476418a7332ea1d53b3f95de322d4661797b5
[]
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
402
sce
example5_12.sce
clc // Given that L = 0.1 // length of fiber in km p = 5e-6 // power of signal in watt p_ = 1e-6 // power of signal inside the fiber in watt // Sample Problem 12 on page no. 5.20 printf("\n # PROBLEM 12 # \n") alpha = (10 * log10(p / p_)) / L//calculation for absorption coefficient printf("\n Standard formula used \n alpha=10/L*log(Pi/Po).\n") printf("\n Absorption coefficient = %f dB/km. ",alpha)
8052cc42cb2b33a6cd00c683d7b15135e91523c2
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH27/EX27.8/Ex27_8.sce
9573e85c28f17860265ebe62f92c2910d24d5a61
[]
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
353
sce
Ex27_8.sce
//Example 27.8 //Let I_0 be the initial intensity. //Reduced intensity I=0.1*I_0, as intensity is reduced by 90% //Using I=I_0*(cosd(theta))^2 and substituting value for I,we get theta=acosd(sqrt(0.1));//Angle; printf('Angle required = %0.1f deg',theta) //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
26ff28927ae6534294de2e4fab785bf489125330
717ddeb7e700373742c617a95e25a2376565112c
/806/DEPENDENCIES/2_42.sci
927ab13b416710ad75b1fdf5b877c47aaba3fd30
[]
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
65
sci
2_42.sci
h1=0.5//m h2=0.2//m S=1 p=9810//N/m^3(Weight density of water)
a987de940873f2cc34941c0e3fdd5f0217667f43
449d555969bfd7befe906877abab098c6e63a0e8
/3773/CH15/EX15.5/Ex15_5.sce
c8eefd833889a8eedeac19b4b4a343223af1747b
[]
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
326
sce
Ex15_5.sce
//Chapter 15: Antennas for Special Applications //Example 15-13.2 clc; //Variable Initialization fre = 3e9 //Frequency (Hz) eps_r = 80 //Relative permittivity of water (unitless) //Calculation tau = atan(1/sqrt(eps_r))*180/%pi //Forward Tilt angle (degrees) //Result mprintf("The forward tilt angle is %.1f degrees",tau)
7b7e8b91c199edb0b2acb6a66a841232b65b22c4
b26cbe6bc3e201f030705aaf9eb82da94def231f
/tests/remove_rc-006.tst
20771695e9424da9afba36d7275fadd77f95b3b4
[]
no_license
RP-pbm/Recurrence-plot
f86c5cd85460661b01a609f8f4281d2cda6b4e07
b5da95f9b30c1a924a002102219bf0a2ad47df2c
refs/heads/master
2022-07-24T12:11:34.163543
2022-07-09T19:32:43
2022-07-09T19:32:43
92,934,698
0
0
null
null
null
null
UTF-8
Scilab
false
false
24
tst
remove_rc-006.tst
../inputs/square-5x5.ssv
d3669966f5a2eb248124a6278352aff4f5446b85
f2635c3a10a2508720f5d231581bbcf58664cf12
/pl/math/test/testcases/directed/asinh.tst
1485dfeffecf2ef5ffe3f6e77b837f7b027d803a
[ "LLVM-exception", "MIT", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
xboxfanj/optimized-routines
9ed0fef9346076e3eaf952cecd9b6c39cca8d92b
e312306d13daf9c044145ca26fb34ef7704fae81
refs/heads/master
2023-01-21T08:14:26.298438
2022-12-21T00:02:54
2023-01-10T16:39:37
232,194,104
0
0
MIT
2020-01-06T22:07:31
2020-01-06T22:07:30
null
UTF-8
Scilab
false
false
995
tst
asinh.tst
; asinh.tst ; ; Copyright (c) 2022-2023, Arm Limited. ; SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception func=asinh op1=7ff80000.00000001 result=7ff80000.00000001 errno=0 func=asinh op1=fff80000.00000001 result=7ff80000.00000001 errno=0 func=asinh op1=7ff00000.00000001 result=7ff80000.00000001 errno=0 status=i func=asinh op1=fff00000.00000001 result=7ff80000.00000001 errno=0 status=i func=asinh op1=7ff00000.00000000 result=7ff00000.00000000 errno=0 func=asinh op1=fff00000.00000000 result=fff00000.00000000 errno=0 func=asinh op1=00000000.00000000 result=00000000.00000000 errno=0 func=asinh op1=80000000.00000000 result=80000000.00000000 errno=0 ; No exception is raised with certain versions of glibc. Functions ; approximated by x near zero may not generate/implement flops and ; thus may not raise exceptions. func=asinh op1=00000000.00000001 result=00000000.00000001 errno=0 maybestatus=ux func=asinh op1=80000000.00000001 result=80000000.00000001 errno=0 maybestatus=ux
0abda72e073d17f0ef472d26f777ea24a151b24a
449d555969bfd7befe906877abab098c6e63a0e8
/599/CH3/EX3.6/example3_6.sce
1f8c55bf67f5f0be067871504c9b71910e0a109f
[]
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
759
sce
example3_6.sce
clear; clc; printf("\t Example 3.6\n"); //kg/kl=0.9=t //Pai=0.3672*Cai so; m=0.3672; t=.9; //Pai and Cai indicates interfacial pressure and conc. //Pal and Cal indicates bulk pressure and conc. Yag=0.15; //molefraction of ammonia Cal=0.147; //liquid phase concentration in kmol/m^3 p=1; //overall pressure Pag=Yag*p; //pressure of ammonia //Pai=m*C_ai; //kg/kl=(Cai-Cal)/(Pag-Pai); Cai=poly([0],'Cai'); //calc. of conc. in gas phase x=roots((Pag-m*Cai)*(t)-(Cai-Cal)); printf("\nthe value of conc. of ammonia cai is :%f kmol/m^3",x); Pai=m*x; printf("\nthe value of interphase pressure Pai is :%f atm",Pai);
a223d15f8da9aff945ca021aca309bf0a5c0248a
e2ae697563b1b764d79ea1933b555ab0d5e3849c
/macros/HELPmagplot.sci
f62e8161a816d39b972e042d50e39b62666a83df
[]
no_license
gq-liu/IPDesignLab
c49b760740f47ec636232a6947aecb3c0626518a
b2f9a9eecad6616c99a2ec20fcceb14fb3ed0c3f
refs/heads/master
2022-01-18T13:30:55.972779
2019-05-06T17:23:12
2019-05-06T17:23:12
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,402
sci
HELPmagplot.sci
function []=HELPmagplot() // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // Authors // Holger Nahrstaedt - 2010 // Ishan Pendharkar - 2001-2007 messagebox([ 'Bode Plot of open loop plant can be seen by toggling' 'the ''Design'' Button. You can make changes to the'; 'bode plot by cascading transfer functions using the'; '''Plant-->Add/Remove cascade'' buttons.' ' '; 'The default minimum frequency is 0.01 rad/sec.'; 'The default maximum frequency is 1000 rad/sec.'; 'These can be changed by changing ''Settings->Mag. Plot'''; 'Frequency units can be changed from rad/sec to Hertz at will'; 'using the ''Settings-->Frequency Units'' button.'; ]) return; endfunction
f5e6f2200fa3e48b8fa152713e8a8d6d1e5b8b15
b7339a0cd7d82e85754b81dc8ba7659c293a76e6
/TP0/test1.sce
19fd6d5bcc9b2c6343c096af1ad046b7fe328f45
[]
no_license
EzequielPostan/Machine-Learning
f9a7079b93229579fcd1064acace846cf55bd064
a43c0d982a17df5ff9460585318d9fcdc686bd9d
refs/heads/master
2020-06-04T22:48:01.153166
2015-04-06T15:32:19
2015-04-06T15:32:19
33,487,121
0
0
null
null
null
null
UTF-8
Scilab
false
false
743
sce
test1.sce
// test1.sce // Código Scilab para corrobarar los resultados de los ejercicios a) y b) // con un test de dimensión 2 y 200 casos de prueba (n=200 d=2) // // Si se desea tenes más casos de prueba, modificar el valor de n_div_2 // (el mismo debe ser igual a la cantidad de datos de cada clase, n/2) // clear() n_div_2 = 100 [fd,err] = mopen("ejercicioA.data",'r') for i=1:n_div_2 [n,A(i,1),A(i,2),A(i,3)] = mfscanf(fd,"%f,%f,%d"); end for i=1:n_div_2 [n,B(i,1),B(i,2),B(i,3)] = mfscanf(fd,"%f,%f,%d"); end mclose(fd) length(A) length(B) mean(A,'r') stdev(A,'r') mean(B,'r') stdev(B,'r') clf() plot(A(:,1),A(:,2),'db') plot(B(:,1),B(:,2),'dr') histplot(10,A(:,1)) histplot(10,A(:,2)) histplot(10,B(:,1)) histplot(10,B(:,2))
8925d0fdd1ec442f151048af8ed20f3daa3e3911
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.5_11.tst
1e1a63970b3a7a7651bcf8142152065df82dceae
[]
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
33,609
tst
bow.5_11.tst
5 4:0.5 6:0.3333333333333333 7:0.25 8:0.25 12:0.3333333333333333 20:0.5 21:0.25 23:1.0 26:0.02702702702702703 38:1.0 48:1.0 49:0.015503875968992248 51:2.0 55:0.5 64:0.5 68:1.0 71:2.0 100:0.1 133:1.5 137:1.0 176:1.0 183:1.0 190:0.2 236:1.0 366:1.0 383:1.0 407:1.0 483:2.0 611:1.0 647:1.0 879:1.0 982:1.0 1087:1.0 1113:2.0 1228:0.5 1233:1.0 1606:1.0 2257:1.0 3131:1.0 3259:1.0 3536:2.0 3684:1.0 6489:2.0 5 4:2.0 7:0.25 11:0.5 12:0.16666666666666666 20:1.0 21:0.125 38:2.0 48:1.0 49:0.015503875968992248 51:1.0 64:0.16666666666666666 67:0.2 68:1.0 87:0.3333333333333333 95:1.0 127:0.5 134:0.2857142857142857 135:1.0 158:0.3333333333333333 288:0.5 355:1.0 383:1.0 442:0.5 541:1.0 550:0.3333333333333333 571:1.0 641:0.5 1138:1.0 1345:1.0 1493:1.0 2357:1.0 3259:1.0 5 4:1.0 6:0.16666666666666666 12:0.16666666666666666 20:0.5 21:0.375 23:1.0 26:0.02702702702702703 38:1.0 42:1.0 44:1.0 54:0.5 55:0.125 74:1.0 127:0.5 170:1.0 288:0.5 435:1.0 1354:1.0 5 4:0.5 7:0.25 9:0.25 21:0.25 23:4.0 42:1.0 49:0.015503875968992248 51:1.0 54:0.5 55:0.375 68:1.0 71:1.0 87:0.3333333333333333 137:1.0 241:0.5 269:0.5 333:1.0 397:1.0 490:1.0 638:1.0 762:2.0 1285:1.0 2075:1.0 2224:1.0 3013:1.0 3259:1.0 4398:1.0 5642:1.0 7092:1.0 5 4:0.5 6:0.3333333333333333 12:0.5 21:0.125 23:2.0 49:0.007751937984496124 51:1.0 55:0.25 62:0.2 71:2.0 80:0.3333333333333333 93:0.09090909090909091 121:0.018867924528301886 122:1.0 126:0.3333333333333333 136:1.0 147:1.0 247:1.0 331:0.5 424:1.0 667:0.5 925:1.0 1249:1.0 1340:1.0 1361:0.5 2760:1.0 2967:1.0 3488:1.0 3948:1.0 4642:1.0 5009:1.0 7406:1.0 5 12:0.16666666666666666 15:0.14285714285714285 17:0.1111111111111111 19:0.09090909090909091 20:2.0 21:0.125 23:3.0 45:0.3333333333333333 46:0.3333333333333333 48:1.0 49:0.007751937984496124 51:1.0 64:0.16666666666666666 71:3.0 75:0.2 88:1.0 112:1.0 121:0.018867924528301886 126:0.6666666666666666 148:0.3333333333333333 178:1.0 250:0.5 261:1.0 303:1.0 331:0.5 534:0.3333333333333333 650:1.0 781:0.5 1529:1.0 2399:1.0 2798:1.0 2811:1.0 3031:1.0 3137:1.0 3186:1.0 3241:1.0 6245:1.0 5 4:3.0 5:0.1111111111111111 7:0.25 9:0.5 12:0.16666666666666666 14:1.0 15:0.14285714285714285 20:0.5 21:0.125 23:4.0 24:0.5 49:0.007751937984496124 51:1.0 54:0.5 55:0.25 71:1.0 79:0.5 98:0.5714285714285714 121:0.018867924528301886 127:0.5 137:1.0 175:1.0 176:1.0 185:1.0 188:0.5 197:1.0 236:3.0 251:1.0 278:0.3333333333333333 284:1.0 288:0.5 503:1.0 519:1.0 537:1.0 548:1.5 550:0.3333333333333333 664:0.3333333333333333 746:1.0 814:1.0 3272:1.0 5 4:2.0 6:0.6666666666666666 7:0.5 8:0.25 12:0.16666666666666666 15:0.14285714285714285 19:0.09090909090909091 20:0.5 23:1.0 38:1.0 48:1.0 49:0.007751937984496124 51:1.0 63:1.0 93:0.09090909090909091 112:3.0 121:0.018867924528301886 126:0.3333333333333333 175:1.0 196:1.0 278:0.3333333333333333 281:0.3333333333333333 289:0.125 292:0.125 296:0.5 354:1.0 379:1.0 383:1.0 386:1.0 397:1.0 449:1.0 548:0.5 564:1.0 651:1.0 938:1.0 1245:1.0 1622:1.0 1703:1.0 2013:1.0 2380:1.0 2995:1.0 4762:1.0 6441:1.0 5 4:2.5 6:0.16666666666666666 7:0.25 19:0.09090909090909091 20:0.5 21:0.125 48:1.0 98:0.14285714285714285 100:0.2 121:0.018867924528301886 289:0.125 303:1.0 315:0.5 316:0.5 483:1.0 745:1.0 857:1.0 1026:1.0 1060:1.0 5 4:1.0 5:0.1111111111111111 7:0.25 11:0.5 12:0.16666666666666666 20:0.5 21:0.125 23:1.0 42:1.0 48:2.0 49:0.007751937984496124 51:1.0 55:0.125 62:0.2 63:1.0 64:0.16666666666666666 71:1.0 87:0.3333333333333333 98:0.2857142857142857 100:0.1 112:1.0 113:0.5 158:0.3333333333333333 175:1.0 176:1.0 182:0.5 218:1.0 269:1.0 293:0.3333333333333333 442:0.5 626:1.0 641:0.5 657:1.0 862:1.0 1060:1.0 1721:1.0 2143:1.0 2311:1.0 5 4:1.5 5:0.1111111111111111 6:0.16666666666666666 8:0.25 23:5.0 48:2.0 49:0.007751937984496124 51:1.0 55:0.375 62:0.2 78:1.0 80:0.3333333333333333 88:2.0 98:0.42857142857142855 101:0.5 121:0.018867924528301886 134:0.14285714285714285 141:0.25 158:0.3333333333333333 175:1.0 182:1.0 187:1.0 188:1.0 240:0.5 280:1.0 315:0.5 331:0.5 695:1.0 762:1.0 1060:1.0 1161:1.0 1170:1.0 3176:1.0 4386:3.0 4783:1.0 6245:1.0 6455:1.0 5 4:0.5 5:0.1111111111111111 7:0.75 8:0.25 9:0.25 12:0.16666666666666666 21:0.25 23:3.0 26:0.02702702702702703 38:1.0 49:0.007751937984496124 51:1.0 55:0.125 84:1.0 95:1.0 98:0.2857142857142857 102:1.0 197:1.0 211:1.0 298:0.5 534:0.3333333333333333 550:0.3333333333333333 561:1.0 1118:1.0 1251:1.0 1490:1.0 5 6:0.16666666666666666 7:0.5 12:0.3333333333333333 18:0.3333333333333333 21:0.125 23:4.0 26:0.02702702702702703 44:2.0 48:1.0 49:0.007751937984496124 51:1.0 62:0.6 64:0.3333333333333333 71:1.0 112:3.0 121:0.05660377358490566 127:0.5 134:0.14285714285714285 136:1.0 173:0.5 198:1.0 205:1.0 331:0.5 339:1.0 386:1.0 397:1.0 424:1.0 457:1.0 550:0.3333333333333333 559:1.0 862:1.0 1166:1.0 2211:1.0 3817:1.0 5 4:2.0 7:0.25 8:0.25 21:0.125 23:1.0 41:1.0 62:0.2 73:0.5 96:0.16666666666666666 127:0.5 141:0.25 181:1.0 274:1.0 513:1.0 621:1.0 1317:1.0 1634:1.0 2416:1.0 2632:1.0 5164:1.0 6951:1.0 5 4:1.5 5:0.1111111111111111 8:0.5 9:0.25 12:0.3333333333333333 20:0.5 21:0.125 23:2.0 26:0.02702702702702703 38:1.0 40:0.5 46:0.3333333333333333 48:2.0 54:0.5 55:0.25 62:0.4 64:0.16666666666666666 70:0.5 101:0.5 110:1.0 121:0.018867924528301886 127:0.5 136:1.0 176:1.0 178:1.0 182:1.0 198:1.0 209:1.0 265:1.0 366:1.0 424:1.0 494:1.0 982:1.0 995:1.0 1030:1.0 1117:1.0 1340:1.0 1488:1.0 2099:1.0 2319:1.0 3161:1.0 3165:1.0 6654:1.0 5 4:1.5 7:0.25 23:1.0 100:0.1 115:0.1 116:0.1111111111111111 121:0.018867924528301886 255:1.0 390:0.5 5 4:1.5 17:0.1111111111111111 20:0.5 21:0.25 26:0.02702702702702703 40:0.5 42:1.0 43:0.3333333333333333 55:0.25 73:0.5 152:0.5 201:1.0 1481:1.0 2211:1.0 5 4:1.0 5:0.1111111111111111 6:0.16666666666666666 7:0.25 8:0.25 9:0.25 12:0.3333333333333333 15:0.14285714285714285 21:0.125 23:4.0 24:0.5 26:0.02702702702702703 42:1.0 48:1.0 88:1.0 142:0.5 183:1.0 188:0.5 194:1.0 251:1.0 331:0.5 476:1.0 1227:1.0 1234:1.0 1580:1.0 2635:1.0 5 4:0.5 5:0.1111111111111111 7:0.25 23:1.0 38:1.0 98:0.14285714285714285 115:0.1 116:0.1111111111111111 397:1.0 513:1.0 519:1.0 1634:1.0 2017:0.5 2553:1.0 5 4:1.5 7:0.25 11:0.5 15:0.14285714285714285 20:0.5 21:0.25 24:0.5 26:0.05405405405405406 49:0.007751937984496124 51:1.0 54:0.5 55:0.125 87:0.3333333333333333 98:0.14285714285714285 121:0.018867924528301886 141:0.25 176:1.0 250:0.5 251:2.0 331:0.5 418:1.0 483:1.0 647:1.0 803:1.0 871:1.0 925:1.0 2812:1.0 2989:1.0 5 4:1.5 17:0.1111111111111111 20:1.0 23:4.0 48:1.0 49:0.015503875968992248 51:2.0 55:0.375 75:0.2 134:0.2857142857142857 149:0.3333333333333333 156:1.0 158:0.3333333333333333 379:2.0 490:1.0 669:1.0 1079:1.0 1128:1.0 1496:1.0 1669:1.0 2080:1.0 2082:1.0 2085:1.0 2158:1.0 2684:1.0 2972:1.0 2982:1.0 3005:1.0 3212:1.0 3213:1.0 5523:1.0 5628:1.0 5 4:1.0 7:0.25 8:0.25 12:0.16666666666666666 20:0.5 21:0.125 23:2.0 38:2.0 48:2.0 49:0.015503875968992248 51:1.0 55:0.5 58:0.25 64:0.3333333333333333 93:0.09090909090909091 112:2.0 137:2.0 197:1.0 265:1.0 292:0.125 383:1.0 387:1.0 729:1.0 821:1.0 854:1.0 910:1.0 1031:1.0 1270:0.5 1455:1.0 1833:1.0 1896:1.0 2766:1.0 2871:2.0 3523:1.0 5 4:1.0 6:0.3333333333333333 7:0.25 12:0.3333333333333333 17:0.1111111111111111 20:1.0 21:0.125 23:2.0 46:0.3333333333333333 48:2.0 49:0.015503875968992248 51:2.0 54:0.5 55:0.125 62:0.2 64:0.3333333333333333 71:1.0 97:0.3333333333333333 98:0.14285714285714285 112:1.0 117:0.5 121:0.018867924528301886 122:1.0 134:0.14285714285714285 205:1.0 246:1.0 331:1.0 379:1.0 401:1.0 413:1.0 424:1.0 502:1.0 506:1.0 715:1.0 823:1.0 1000:0.5 1323:1.0 1415:3.0 1562:1.0 2420:1.0 2553:1.0 2692:1.0 3248:0.5 5429:1.0 7492:1.0 5 4:1.5 6:0.3333333333333333 7:0.25 12:0.6666666666666666 20:1.0 23:2.0 24:0.5 42:1.0 48:1.0 49:0.015503875968992248 51:1.0 55:0.25 64:0.3333333333333333 68:1.0 71:2.0 76:1.0 97:0.3333333333333333 112:1.0 134:0.14285714285714285 153:0.5 289:0.125 292:0.125 300:1.0 320:1.0 356:1.0 366:1.0 401:1.0 534:0.3333333333333333 571:1.0 621:1.0 1061:1.0 1421:1.0 1562:1.0 1623:1.0 1928:1.0 2222:2.0 5 4:2.5 6:0.16666666666666666 11:0.5 12:0.5 15:0.14285714285714285 17:0.2222222222222222 20:0.5 23:2.0 48:1.0 49:0.015503875968992248 51:2.0 57:1.0 71:1.0 85:1.0 93:0.09090909090909091 98:0.14285714285714285 100:0.1 121:0.018867924528301886 179:0.5 194:1.0 437:1.0 442:0.5 541:1.0 543:1.0 559:1.0 561:1.0 701:1.0 875:1.0 992:1.0 1582:1.0 2024:1.0 2106:1.0 5 4:1.0 7:0.25 8:1.75 11:0.5 12:0.8333333333333334 20:0.5 23:3.0 38:1.0 48:1.0 49:0.015503875968992248 51:3.0 54:0.5 55:0.25 64:0.3333333333333333 71:1.0 73:0.5 88:1.0 112:1.0 115:0.1 116:0.1111111111111111 129:1.0 141:0.25 154:0.3333333333333333 158:0.3333333333333333 176:1.0 219:1.0 231:1.0 289:0.125 353:1.0 386:1.0 439:1.0 453:1.0 641:0.5 682:1.0 1063:1.0 1270:0.5 1562:1.0 1708:1.0 3122:1.0 3365:1.0 6144:1.0 5 4:1.5 7:0.25 12:0.16666666666666666 19:0.09090909090909091 24:0.5 49:0.015503875968992248 51:2.0 55:0.25 66:1.0 71:2.0 110:1.0 131:1.0 134:0.14285714285714285 158:0.3333333333333333 175:1.0 176:1.0 215:1.0 385:1.0 401:1.0 442:1.5 616:1.0 937:1.0 1667:1.0 2695:1.0 3047:1.0 5334:1.0 6739:1.0 5 4:1.0 6:0.16666666666666666 8:0.25 20:0.5 21:0.125 23:3.0 24:0.5 26:0.02702702702702703 38:2.0 42:1.0 43:0.3333333333333333 48:1.0 49:0.007751937984496124 51:1.0 55:0.25 62:0.2 83:1.0 104:0.3333333333333333 134:0.14285714285714285 137:1.0 175:1.0 179:1.0 180:1.0 197:1.0 203:0.3333333333333333 250:0.5 255:1.0 279:0.5 314:1.0 550:0.3333333333333333 616:1.0 1046:1.0 1081:1.0 1153:1.0 3047:1.0 3076:1.0 5 4:1.5 11:0.5 12:0.16666666666666666 15:0.2857142857142857 19:0.09090909090909091 20:1.5 21:0.25 23:1.0 24:0.5 26:0.02702702702702703 49:0.007751937984496124 51:1.0 55:0.125 58:0.5 74:1.0 75:0.2 96:0.16666666666666666 101:0.5 121:0.018867924528301886 126:0.3333333333333333 194:1.0 198:1.0 202:0.14285714285714285 236:1.0 269:0.5 401:1.0 490:1.0 774:1.0 1184:1.0 1253:1.0 1375:1.0 1902:1.0 2216:1.0 2462:1.0 2981:1.0 3465:1.0 5 4:2.0 7:0.25 12:0.3333333333333333 18:0.3333333333333333 20:1.5 21:0.125 23:1.0 24:0.5 26:0.02702702702702703 48:2.0 49:0.015503875968992248 51:2.0 55:0.375 58:0.25 64:0.16666666666666666 141:0.5 154:0.6666666666666666 175:1.0 180:1.0 181:1.0 197:1.0 251:1.0 281:0.3333333333333333 347:1.0 359:1.0 401:1.0 451:1.0 483:1.0 519:1.0 1539:1.0 1580:1.0 3132:1.0 5 7:0.5 20:0.5 21:0.125 23:1.0 26:0.02702702702702703 40:0.5 47:1.0 48:1.0 49:0.007751937984496124 51:1.0 55:0.25 62:0.2 71:1.0 73:0.5 136:1.0 141:0.25 154:0.3333333333333333 199:0.5 281:0.3333333333333333 366:1.0 479:1.0 517:1.0 550:0.3333333333333333 956:1.0 1149:1.0 1782:1.0 2453:1.0 2989:1.0 5 4:1.0 7:0.5 8:0.5 11:0.5 12:0.16666666666666666 19:0.09090909090909091 20:1.5 23:3.0 24:0.5 25:1.0 48:1.0 49:0.007751937984496124 51:1.0 54:0.5 55:0.375 98:0.14285714285714285 121:0.03773584905660377 139:0.5 141:0.25 158:0.3333333333333333 162:1.0 198:1.0 201:1.0 280:1.0 333:1.0 451:1.0 1037:1.0 1093:1.0 1269:1.0 2307:1.0 2553:1.0 2743:1.0 4291:1.0 5324:1.0 5 4:1.0 21:0.125 23:1.0 26:0.02702702702702703 48:1.0 98:0.14285714285714285 176:1.0 331:1.0 529:0.3333333333333333 543:1.0 669:2.0 2063:1.0 2380:1.0 5 4:1.0 11:0.5 15:0.14285714285714285 20:1.5 21:0.125 23:2.0 24:0.5 26:0.02702702702702703 44:1.0 48:1.0 49:0.007751937984496124 51:1.0 55:0.125 78:1.0 80:0.3333333333333333 93:0.09090909090909091 98:0.14285714285714285 126:0.3333333333333333 127:0.5 135:1.0 137:1.0 158:0.3333333333333333 179:0.5 198:1.0 218:0.5 449:1.0 537:3.0 550:0.3333333333333333 679:1.0 746:1.0 908:1.0 952:1.0 1251:1.0 1391:1.0 1636:1.0 2418:1.0 5382:1.0 5 4:1.0 7:0.25 8:0.75 11:1.0 12:0.5 20:0.5 23:5.0 24:1.0 48:2.0 49:0.015503875968992248 51:2.0 62:0.2 64:0.3333333333333333 71:1.0 98:0.2857142857142857 122:1.0 129:1.0 133:0.5 181:1.0 199:0.5 218:0.5 279:0.5 312:1.0 315:0.5 331:0.5 354:1.0 385:1.0 410:1.0 439:1.0 483:1.0 493:1.0 611:1.0 623:1.0 629:1.0 657:1.0 695:1.0 814:1.0 1136:1.0 1309:1.0 1351:1.0 1525:1.0 1652:1.0 1782:1.0 1834:1.0 2029:0.5 2431:1.0 7398:1.0 5 4:1.5 5:0.1111111111111111 8:0.25 12:0.16666666666666666 18:0.3333333333333333 19:0.09090909090909091 20:0.5 21:0.375 23:1.0 26:0.02702702702702703 48:1.0 49:0.007751937984496124 51:2.0 55:0.125 68:1.0 71:2.0 93:0.09090909090909091 121:0.018867924528301886 134:0.14285714285714285 147:1.0 181:1.0 198:1.0 279:1.0 307:1.0 316:0.5 446:0.25 493:1.0 682:1.0 740:0.5 2106:1.0 5 4:2.0 5:0.1111111111111111 6:0.16666666666666666 7:0.25 8:0.25 12:0.3333333333333333 15:0.14285714285714285 20:0.5 21:0.125 23:2.0 24:1.0 26:0.02702702702702703 48:1.0 49:0.007751937984496124 51:1.0 58:0.25 64:0.16666666666666666 71:1.0 83:1.0 88:1.0 101:0.5 121:0.018867924528301886 126:0.3333333333333333 158:0.3333333333333333 179:0.5 197:1.0 308:1.0 460:1.0 550:0.3333333333333333 612:1.0 849:1.0 864:1.0 1187:1.0 1188:1.0 1525:1.0 1631:1.0 2012:1.0 2080:1.0 2447:1.0 2749:1.0 5 4:1.5 6:0.16666666666666666 12:0.3333333333333333 17:0.1111111111111111 19:0.18181818181818182 20:0.5 48:1.0 49:0.007751937984496124 51:1.0 67:0.2 96:0.16666666666666666 112:1.0 149:0.3333333333333333 158:0.3333333333333333 194:1.0 248:1.0 315:0.5 534:0.3333333333333333 548:0.5 1166:1.0 1187:1.0 1202:1.0 1568:1.0 1824:1.0 1918:1.0 1968:1.0 3111:1.0 6441:1.0 5 4:0.5 6:0.16666666666666666 7:0.5 20:0.5 21:0.25 23:4.0 26:0.02702702702702703 38:1.0 45:0.3333333333333333 49:0.007751937984496124 51:1.0 64:0.16666666666666666 71:1.0 77:1.0 78:1.0 79:0.5 80:0.3333333333333333 98:0.2857142857142857 117:0.5 135:1.0 176:1.0 199:0.5 203:0.6666666666666666 241:0.5 285:1.0 331:0.5 397:1.0 476:1.0 519:1.0 524:0.5 530:1.0 550:0.3333333333333333 1246:1.0 1985:1.0 2128:1.0 5 4:2.0 9:0.25 12:0.16666666666666666 20:0.5 21:0.125 23:2.0 24:0.5 42:1.0 48:2.0 49:0.007751937984496124 51:1.0 71:1.0 80:0.3333333333333333 120:0.2 125:0.3333333333333333 182:0.5 203:0.3333333333333333 241:0.5 249:1.0 265:1.0 333:1.0 431:1.0 483:1.0 493:1.0 524:0.5 621:1.0 675:1.0 740:0.5 1143:1.0 1554:1.0 5 4:2.5 7:0.25 8:0.25 9:0.25 15:0.14285714285714285 23:2.0 55:0.375 62:0.2 64:0.16666666666666666 73:0.5 117:0.5 121:0.018867924528301886 127:0.5 131:1.0 134:0.14285714285714285 218:0.5 236:1.0 331:0.5 446:0.25 878:1.0 1144:1.0 1212:1.0 1595:1.0 1603:2.0 1828:1.0 1969:1.0 5230:1.0 6318:1.0 5 4:0.5 12:0.16666666666666666 17:0.1111111111111111 21:0.25 23:2.0 26:0.02702702702702703 62:0.4 88:1.0 121:0.018867924528301886 127:0.5 203:0.3333333333333333 307:1.0 446:0.25 449:1.0 543:1.0 2063:1.0 5 4:1.5 6:0.16666666666666666 7:0.5 9:0.25 19:0.09090909090909091 20:1.0 21:0.125 23:2.0 44:1.0 46:0.3333333333333333 48:1.0 55:0.125 98:0.14285714285714285 117:0.5 121:0.03773584905660377 126:0.3333333333333333 141:0.25 356:1.0 503:1.0 550:0.3333333333333333 682:1.0 814:1.0 929:1.0 989:1.0 1499:1.0 1500:1.0 2592:1.0 5 4:1.0 5:0.1111111111111111 12:0.16666666666666666 17:0.2222222222222222 19:0.09090909090909091 20:1.0 21:0.125 23:2.0 93:0.09090909090909091 98:0.14285714285714285 100:0.1 147:1.0 183:1.0 201:1.0 218:0.5 285:1.0 424:1.0 487:1.0 499:1.0 1464:1.0 5 4:2.5 6:0.3333333333333333 8:0.25 12:0.16666666666666666 15:0.14285714285714285 17:0.1111111111111111 21:0.125 22:1.0 23:1.0 24:0.5 46:0.3333333333333333 48:1.0 49:0.007751937984496124 51:1.0 55:0.125 64:0.16666666666666666 71:1.0 93:0.09090909090909091 117:0.5 137:2.0 210:0.5 255:1.0 315:0.5 316:0.5 488:1.0 592:1.0 640:1.0 830:1.0 871:1.0 1011:1.0 1046:1.0 3156:1.0 3459:1.0 5 4:1.5 8:0.25 12:0.5 20:2.0 21:0.375 23:3.0 24:0.5 44:1.0 48:2.0 49:0.007751937984496124 51:1.0 55:0.25 62:0.2 64:0.3333333333333333 71:1.0 98:0.14285714285714285 100:0.1 121:0.018867924528301886 134:0.14285714285714285 141:0.5 153:0.5 162:1.0 183:1.0 190:0.2 210:0.5 285:1.0 427:1.0 457:1.0 479:1.0 483:1.0 534:0.3333333333333333 537:1.0 641:0.5 664:0.3333333333333333 740:0.5 890:1.0 1084:1.0 1179:1.0 1375:1.0 1525:1.0 1790:1.0 2157:1.0 2207:1.0 2577:1.0 6194:1.0 5 4:1.0 5:0.1111111111111111 11:0.5 12:0.16666666666666666 20:1.5 21:0.125 26:0.02702702702702703 38:2.0 49:0.007751937984496124 51:1.0 55:0.125 75:0.2 101:0.5 112:1.0 147:1.0 158:0.3333333333333333 366:1.0 367:1.0 601:0.5 1369:1.0 1579:1.0 1708:1.0 1790:1.0 1827:1.0 1831:1.0 3407:1.0 4093:1.0 4705:1.0 5 4:1.5 5:0.1111111111111111 8:0.5 12:0.16666666666666666 20:0.5 21:0.125 23:1.0 24:0.5 49:0.007751937984496124 55:0.125 67:0.2 68:1.0 73:0.5 84:1.0 112:1.0 121:0.018867924528301886 126:0.3333333333333333 203:0.3333333333333333 250:0.5 519:1.0 765:1.0 811:1.0 1071:1.0 1344:1.0 1890:0.5 2967:1.0 7645:1.0 5 4:0.5 6:0.16666666666666666 7:0.25 11:0.5 20:0.5 21:0.375 23:2.0 26:0.02702702702702703 44:1.0 48:1.0 49:0.007751937984496124 51:1.0 74:1.0 99:1.0 112:2.0 121:0.07547169811320754 133:0.5 142:0.5 185:1.0 241:0.5 279:0.5 281:0.3333333333333333 331:1.5 401:1.0 405:0.5 424:1.0 471:1.0 530:1.0 534:0.3333333333333333 664:0.16666666666666666 892:0.5 1049:0.5 1144:1.0 1375:1.0 1415:1.0 1595:1.0 1992:1.0 2257:1.0 2470:1.0 4090:1.0 5 4:0.5 8:0.25 11:0.5 15:0.14285714285714285 20:0.5 23:2.0 49:0.007751937984496124 51:1.0 71:2.0 73:0.5 75:0.2 117:0.5 136:1.0 141:0.25 176:1.0 185:1.0 190:0.2 196:1.0 255:1.0 274:1.0 281:0.3333333333333333 401:1.0 477:1.0 548:0.5 549:1.0 1066:1.0 1149:1.0 1278:1.0 1686:1.0 2231:1.0 3241:1.0 3242:1.0 4938:1.0 5 4:1.5 19:0.09090909090909091 21:0.125 23:2.0 26:0.02702702702702703 55:0.125 92:1.0 98:0.14285714285714285 100:0.1 121:0.018867924528301886 122:1.0 123:1.0 205:1.0 236:1.0 289:0.25 872:2.0 908:1.0 5 4:0.5 17:0.1111111111111111 19:0.09090909090909091 20:1.0 21:0.125 23:3.0 47:1.0 88:1.0 92:1.0 117:0.5 121:0.03773584905660377 126:0.3333333333333333 148:0.5 331:1.0 5 4:0.5 19:0.09090909090909091 20:1.0 21:0.125 23:1.0 34:1.0 35:1.0 42:1.0 55:0.125 134:0.14285714285714285 148:0.3333333333333333 210:0.5 417:1.0 907:1.0 2525:1.0 2690:1.0 5 4:1.0 19:0.18181818181818182 20:0.5 21:0.375 23:1.0 26:0.02702702702702703 42:1.0 115:0.1 116:0.1111111111111111 5 4:1.5 5:0.1111111111111111 9:0.25 12:0.16666666666666666 19:0.09090909090909091 21:0.125 26:0.02702702702702703 43:0.3333333333333333 62:0.2 84:1.0 258:1.0 529:0.3333333333333333 5 4:0.5 19:0.09090909090909091 20:0.5 21:0.375 23:2.0 26:0.05405405405405406 121:0.018867924528301886 124:0.5 133:0.5 134:0.14285714285714285 135:1.0 136:1.0 1122:0.5 1718:1.0 5 4:1.0 5:0.1111111111111111 15:0.14285714285714285 21:0.125 23:4.0 26:0.02702702702702703 33:1.0 38:1.0 121:0.03773584905660377 126:0.3333333333333333 134:0.14285714285714285 144:1.0 149:0.3333333333333333 314:2.0 462:1.0 1074:1.0 5 4:1.5 21:0.125 23:1.0 26:0.02702702702702703 48:1.0 62:0.2 63:1.0 137:1.0 148:0.3333333333333333 331:0.5 451:1.0 464:1.0 541:1.0 563:1.0 1122:0.5 1128:1.0 1415:1.0 5 4:1.5 5:0.1111111111111111 14:1.0 21:0.25 23:1.0 26:0.02702702702702703 40:0.5 67:0.2 68:1.0 73:0.5 126:0.3333333333333333 154:0.3333333333333333 202:0.2857142857142857 246:1.0 278:0.3333333333333333 507:1.0 1603:1.0 3351:1.0 5 4:1.0 5:0.1111111111111111 15:0.14285714285714285 20:0.5 23:1.0 54:0.5 96:0.16666666666666666 126:0.3333333333333333 127:0.5 149:0.3333333333333333 214:1.0 289:0.125 355:1.0 424:1.0 513:1.0 1455:1.0 2040:1.0 5 4:1.0 21:0.125 23:1.0 26:0.02702702702702703 38:1.0 70:0.5 194:1.0 289:0.125 298:0.5 424:1.0 1144:1.0 5 4:1.5 17:0.1111111111111111 24:0.5 63:1.0 98:0.2857142857142857 144:1.0 188:0.5 249:1.0 289:0.25 307:1.0 446:0.25 513:1.0 1313:1.0 1363:1.0 1364:1.0 1487:1.0 2748:1.0 6003:1.0 5 4:1.0 6:0.16666666666666666 7:0.75 9:0.25 12:0.16666666666666666 21:0.125 23:1.0 48:1.0 49:0.007751937984496124 51:1.0 62:0.2 71:1.0 93:0.09090909090909091 121:0.018867924528301886 133:0.5 134:0.14285714285714285 136:1.0 175:1.0 176:1.0 202:0.14285714285714285 316:0.5 390:0.5 655:1.0 1405:1.0 5 4:1.0 9:0.25 11:0.5 19:0.18181818181818182 20:0.5 21:0.125 23:3.0 38:1.0 49:0.007751937984496124 51:1.0 55:0.125 64:0.3333333333333333 80:0.3333333333333333 98:0.14285714285714285 115:0.1 116:0.1111111111111111 137:1.0 200:1.0 201:1.0 288:0.5 292:0.125 320:1.0 386:1.0 413:1.0 424:1.0 468:1.0 476:1.0 612:1.0 621:1.0 1194:1.0 1197:1.0 2106:1.0 3049:1.0 3051:1.0 5 4:1.5 11:0.5 15:0.14285714285714285 20:0.5 21:0.125 23:2.0 24:0.5 40:0.5 42:1.0 49:0.007751937984496124 51:1.0 55:0.125 62:0.2 71:1.0 88:1.0 93:0.09090909090909091 125:0.3333333333333333 156:1.0 197:1.0 202:0.14285714285714285 231:1.0 281:0.3333333333333333 350:1.0 451:1.0 513:1.0 908:1.0 952:1.0 1408:1.0 2040:1.0 2081:1.0 2935:1.0 5 4:1.0 6:0.16666666666666666 7:0.25 17:0.1111111111111111 20:0.5 21:0.125 26:0.02702702702702703 49:0.007751937984496124 54:0.5 71:1.0 84:1.0 93:0.09090909090909091 99:1.0 121:0.018867924528301886 136:1.0 137:1.0 202:0.14285714285714285 231:1.0 287:1.0 390:0.5 1270:0.5 2191:1.0 4500:1.0 6557:1.0 5 4:1.0 6:0.3333333333333333 8:0.25 15:0.14285714285714285 21:0.125 23:1.0 45:0.3333333333333333 47:1.0 48:2.0 49:0.007751937984496124 51:1.0 55:0.25 64:0.16666666666666666 74:1.0 88:1.0 96:0.16666666666666666 98:0.14285714285714285 134:0.14285714285714285 175:1.0 188:0.5 212:1.0 284:1.0 460:1.0 548:0.5 549:1.0 662:1.0 952:1.0 1351:1.0 1448:1.0 2484:1.0 2691:1.0 2898:1.0 3176:1.0 5 4:1.0 8:0.5 15:0.14285714285714285 17:0.1111111111111111 19:0.09090909090909091 20:0.5 21:0.5 23:3.0 26:0.02702702702702703 38:2.0 49:0.007751937984496124 51:1.0 55:0.125 68:1.0 88:1.0 98:0.14285714285714285 165:0.5 176:1.0 188:0.5 194:1.0 202:0.14285714285714285 241:0.5 255:1.0 296:0.5 308:1.0 331:0.5 370:1.0 390:0.5 437:1.0 536:1.0 566:1.0 652:1.0 877:1.0 991:0.5 1346:0.1111111111111111 1509:1.0 1793:1.0 1863:1.0 2714:0.5 2967:1.0 3683:1.0 3736:1.0 5052:1.0 5800:1.0 5 4:2.5 6:0.16666666666666666 7:0.25 8:0.25 15:0.14285714285714285 20:2.0 23:2.0 48:1.0 49:0.015503875968992248 51:2.0 55:0.25 97:0.3333333333333333 100:0.1 115:0.1 121:0.018867924528301886 134:0.14285714285714285 137:1.0 141:0.25 153:1.0 154:0.3333333333333333 158:0.3333333333333333 175:1.0 176:1.0 180:1.0 200:1.0 210:0.5 264:1.0 284:1.0 333:1.0 366:1.0 424:1.0 641:0.5 652:1.0 653:0.5 682:1.0 814:1.0 890:1.0 903:1.0 1087:1.0 1278:1.0 1341:1.0 1389:0.5 1536:1.0 1620:1.0 2238:1.0 2692:1.0 3122:1.0 4686:1.0 6756:1.0 5 4:1.0 6:0.16666666666666666 7:0.25 12:0.16666666666666666 20:0.5 21:0.125 23:3.0 26:0.02702702702702703 38:1.0 49:0.015503875968992248 51:2.0 55:0.25 80:0.3333333333333333 88:1.0 98:0.14285714285714285 100:0.1 101:0.5 112:1.0 121:0.03773584905660377 122:1.0 132:1.0 139:0.5 149:0.3333333333333333 176:1.0 192:1.0 195:1.0 231:2.0 331:1.0 333:1.0 366:2.0 483:1.0 566:1.0 697:1.0 890:1.0 1060:1.0 1536:1.0 1577:1.0 2041:1.0 4705:1.0 5 4:0.5 6:0.16666666666666666 7:0.25 12:0.6666666666666666 23:5.0 24:0.5 48:5.0 49:0.023255813953488372 51:2.0 55:0.375 71:2.0 88:1.0 98:0.14285714285714285 114:1.0 134:0.14285714285714285 137:2.0 158:0.3333333333333333 159:0.25 236:1.0 251:1.0 269:0.5 331:0.5 383:1.0 537:2.0 596:1.0 641:0.5 662:1.0 675:1.0 679:1.0 800:1.0 1189:1.0 1569:1.0 1575:1.0 1576:1.0 1603:1.0 2963:1.0 3074:1.0 3105:2.0 3212:1.0 3634:0.3333333333333333 4101:1.0 5159:1.0 5569:1.0 5868:1.0 5 4:1.5 6:0.16666666666666666 8:0.25 11:0.5 12:0.3333333333333333 15:0.42857142857142855 20:1.0 21:0.125 22:1.0 23:4.0 24:1.5 48:2.0 49:0.015503875968992248 51:2.0 55:0.25 68:1.0 71:1.0 88:2.0 98:0.2857142857142857 112:1.0 129:1.0 141:0.25 158:0.3333333333333333 180:1.0 198:1.0 201:1.0 203:0.6666666666666666 250:0.5 265:1.0 281:0.3333333333333333 283:1.0 289:0.125 292:0.125 331:1.0 397:1.0 424:1.0 499:1.0 506:1.0 814:1.0 1016:1.0 1048:0.5 1130:1.0 1149:1.0 2160:1.0 2816:1.0 3087:1.0 4016:1.0 5 4:0.5 6:0.16666666666666666 7:0.25 8:0.25 11:0.5 12:0.6666666666666666 15:0.14285714285714285 19:0.09090909090909091 20:1.0 21:0.125 23:5.0 24:0.5 49:0.015503875968992248 51:2.0 55:0.375 64:0.16666666666666666 68:1.0 71:1.0 78:1.0 88:1.0 95:1.0 121:0.03773584905660377 125:0.3333333333333333 136:1.0 137:2.0 141:0.25 212:1.0 236:1.0 248:1.0 331:0.5 343:1.0 471:1.0 646:1.0 652:1.0 703:1.0 1136:1.0 1417:1.0 1489:1.0 1820:1.0 2074:1.0 2158:1.0 2475:1.0 2869:1.0 3042:1.0 3045:1.0 3212:1.0 3374:1.0 4938:1.0 7685:1.0 5 4:1.5 6:0.16666666666666666 11:0.5 12:0.5 15:0.14285714285714285 17:0.1111111111111111 18:0.3333333333333333 20:0.5 23:5.0 24:0.5 46:0.3333333333333333 48:1.0 49:0.023255813953488372 51:3.0 55:0.125 71:3.0 87:0.3333333333333333 95:1.0 98:0.14285714285714285 100:0.1 112:1.0 121:0.05660377358490566 122:1.0 124:0.5 126:0.3333333333333333 180:1.0 181:1.0 185:1.0 197:1.0 231:1.0 236:1.0 248:1.0 269:0.5 276:1.0 296:0.5 298:0.5 300:1.0 310:0.5 315:0.5 366:1.0 383:1.0 408:1.0 580:1.0 641:0.5 664:0.16666666666666666 669:1.0 929:1.0 1285:1.0 1966:1.0 1970:1.0 2231:1.0 2380:1.0 5 4:1.0 6:0.16666666666666666 7:0.25 12:0.5 15:0.14285714285714285 19:0.09090909090909091 20:1.5 21:0.25 23:3.0 24:0.5 26:0.02702702702702703 38:1.0 48:2.0 49:0.023255813953488372 51:3.0 55:0.125 62:0.2 64:0.3333333333333333 71:1.0 88:1.0 118:1.0 121:0.018867924528301886 134:0.14285714285714285 158:0.3333333333333333 176:1.0 188:0.5 203:0.3333333333333333 241:0.5 300:1.0 310:0.5 383:1.0 435:1.0 466:1.0 468:1.0 476:1.0 519:1.0 529:0.3333333333333333 550:0.3333333333333333 561:1.0 621:1.0 669:1.0 745:1.0 819:1.0 991:0.5 1244:1.0 2380:1.0 3161:1.0 3343:1.0 4067:1.0 5480:1.0 6254:1.0 5 4:1.5 7:0.25 12:0.3333333333333333 19:0.09090909090909091 20:1.0 21:0.25 23:5.0 24:1.0 26:0.02702702702702703 46:0.3333333333333333 48:1.0 49:0.023255813953488372 51:3.0 55:0.375 58:0.25 62:0.2 64:0.3333333333333333 71:2.0 98:0.2857142857142857 110:1.0 112:2.0 121:0.05660377358490566 136:1.0 137:1.0 158:0.3333333333333333 179:0.5 199:0.5 228:1.0 276:1.0 281:0.3333333333333333 300:1.0 314:1.0 323:1.0 611:1.0 664:0.16666666666666666 862:1.0 929:1.0 1005:1.0 1087:1.0 1232:1.0 1269:1.0 1607:1.0 1966:1.0 2054:1.0 2214:1.0 2257:1.0 2281:1.0 2403:1.0 2462:1.0 2841:1.0 2932:1.0 3037:1.0 3038:1.0 3043:1.0 3214:1.0 4711:1.0 5 4:1.0 8:0.25 12:1.0 17:0.1111111111111111 23:4.0 38:1.0 48:1.0 49:0.023255813953488372 51:3.0 55:0.375 62:0.2 64:0.6666666666666666 71:2.0 114:1.0 115:0.1 129:1.0 133:0.5 158:0.3333333333333333 194:1.0 231:1.0 280:1.0 414:0.5 537:1.0 550:0.3333333333333333 601:0.5 652:1.0 958:1.0 1037:1.0 1053:1.0 1429:1.0 1509:1.0 1554:1.0 1940:0.5 2449:1.0 2892:1.0 2893:1.0 3063:1.0 3064:1.0 5492:1.0 5628:1.0 5963:1.0 5 4:0.5 6:0.16666666666666666 8:0.75 12:0.8333333333333334 17:0.1111111111111111 20:1.0 21:0.125 23:6.0 48:1.0 49:0.023255813953488372 51:3.0 55:0.125 62:0.2 67:0.2 71:2.0 98:0.14285714285714285 112:1.0 118:1.0 129:1.0 133:0.5 154:0.3333333333333333 158:0.3333333333333333 198:1.0 223:1.0 241:0.5 331:0.5 385:1.0 393:1.0 429:1.0 434:1.0 435:2.0 534:0.3333333333333333 956:1.0 982:1.0 1081:1.0 1461:1.0 1539:1.0 2400:1.0 2488:1.0 2695:1.0 2878:1.0 3360:1.0 5488:1.0 5 4:1.0 6:0.16666666666666666 7:0.5 8:0.25 11:0.5 12:0.16666666666666666 20:0.5 21:0.25 23:5.0 48:1.0 49:0.023255813953488372 51:3.0 55:0.125 71:2.0 88:1.0 98:0.2857142857142857 158:0.3333333333333333 178:1.0 198:1.0 199:0.5 203:0.3333333333333333 250:0.5 295:1.0 312:1.0 664:0.16666666666666666 728:1.0 871:1.0 877:1.0 1000:0.5 1067:1.0 1254:1.0 1949:1.0 2009:1.0 2211:1.0 3058:1.0 3060:1.0 3494:1.0 4398:1.0 4568:0.5 5480:1.0 5628:1.0 5 4:2.5 6:0.3333333333333333 8:0.25 9:0.25 11:0.5 12:0.5 15:0.14285714285714285 19:0.09090909090909091 21:0.125 23:6.0 24:0.5 38:2.0 42:1.0 46:0.3333333333333333 48:3.0 49:0.023255813953488372 51:3.0 55:0.25 61:0.5 62:0.4 63:1.0 85:1.0 96:0.16666666666666666 100:0.1 121:0.018867924528301886 122:1.0 147:1.0 188:0.5 197:1.0 203:0.3333333333333333 248:2.0 249:1.0 273:1.0 300:1.0 314:1.0 331:0.5 332:1.0 333:1.0 383:1.0 406:1.0 435:1.0 449:1.0 484:0.5 534:0.3333333333333333 757:1.0 791:1.0 952:1.0 1427:1.0 2553:1.0 2592:1.0 2899:1.0 3078:1.0 4502:1.0 6122:1.0 5 4:1.0 6:0.16666666666666666 9:0.25 17:0.1111111111111111 19:0.09090909090909091 23:2.0 38:1.0 46:0.3333333333333333 49:0.015503875968992248 51:2.0 55:0.125 64:0.16666666666666666 112:1.0 125:0.3333333333333333 137:1.0 148:0.6666666666666666 149:0.3333333333333333 154:0.6666666666666666 182:0.5 183:1.0 188:1.0 199:0.5 260:1.0 289:0.125 860:2.0 861:3.0 862:1.0 1187:1.0 1370:1.0 2355:1.0 5 7:0.25 11:0.5 12:0.16666666666666666 18:0.3333333333333333 20:0.5 23:5.0 48:1.0 49:0.015503875968992248 51:2.0 55:0.125 71:2.0 75:0.2 96:0.16666666666666666 98:0.14285714285714285 127:0.5 154:0.6666666666666666 158:0.3333333333333333 196:1.0 203:0.3333333333333333 317:1.0 341:1.0 616:1.0 652:1.0 653:0.5 828:1.0 859:2.0 860:1.0 864:1.0 875:1.0 1116:1.0 1335:1.0 1522:1.0 1582:1.0 3132:1.0 4727:1.0 5523:1.0 5 4:1.0 8:0.25 12:0.5 23:3.0 49:0.023255813953488372 51:3.0 55:0.125 85:1.0 95:1.0 127:0.5 154:0.6666666666666666 173:0.5 231:1.0 236:1.0 289:0.125 317:1.0 333:1.0 341:1.0 354:1.0 366:1.0 435:1.0 439:1.0 507:1.0 828:2.0 858:1.0 859:1.5 860:1.0 861:1.0 862:1.0 1405:1.0 1649:1.0 1701:1.0 2161:1.0 2839:1.0 7685:1.0 5 4:2.5 6:0.16666666666666666 8:0.25 12:0.5 20:0.5 23:2.0 29:1.0 38:2.0 48:1.0 49:0.015503875968992248 51:2.0 55:0.5 64:0.16666666666666666 71:1.0 127:0.5 137:1.0 139:0.5 154:0.3333333333333333 188:0.5 194:1.0 204:1.0 212:1.0 231:1.0 251:1.0 266:1.0 300:1.0 317:1.0 341:1.0 361:1.0 366:2.0 432:1.0 435:1.0 476:1.0 521:1.0 616:1.0 652:1.0 715:1.0 729:1.0 828:2.0 859:2.0 860:2.0 861:1.0 864:1.0 1075:1.0 1160:1.0 1251:1.0 1335:1.0 2049:1.0 2090:1.0 2921:1.0 3250:1.0 3514:1.0 5 4:1.0 8:0.5 11:0.5 15:0.14285714285714285 19:0.09090909090909091 21:0.25 23:3.0 26:0.02702702702702703 49:0.023255813953488372 50:1.0 51:3.0 57:1.0 62:0.2 64:0.3333333333333333 71:1.0 112:2.0 121:0.018867924528301886 126:0.3333333333333333 137:1.0 141:0.25 165:0.5 166:1.0 179:0.5 185:1.0 196:1.0 201:1.0 204:1.0 211:1.0 231:2.0 251:2.0 253:1.0 269:0.5 292:0.25 296:0.5 315:0.5 317:1.0 331:0.5 333:1.0 385:1.0 424:1.0 452:1.0 477:1.0 479:1.0 550:0.3333333333333333 920:1.0 1209:1.0 1573:1.0 2211:1.0 5 4:2.5 7:0.5 12:0.3333333333333333 17:0.1111111111111111 19:0.18181818181818182 20:0.5 21:0.25 23:1.0 24:0.5 42:1.0 49:0.015503875968992248 51:2.0 55:0.25 62:0.2 98:0.14285714285714285 112:1.0 114:1.0 126:0.3333333333333333 158:0.6666666666666666 196:1.0 317:1.0 361:1.0 390:0.5 457:1.0 558:1.0 594:1.0 708:1.0 1370:1.0 1860:1.0 2330:1.0 2357:1.0 5 4:1.5 8:0.25 12:0.16666666666666666 19:0.18181818181818182 20:1.0 23:2.0 24:0.5 49:0.015503875968992248 51:2.0 55:0.25 100:0.1 133:0.5 185:1.0 198:1.0 210:0.5 231:1.0 251:1.0 281:0.3333333333333333 317:1.0 361:1.0 390:0.5 488:2.0 936:0.5 1149:1.0 1344:1.0 1539:1.0 1799:1.0 2077:1.0 2134:1.0 3157:1.0 6593:1.0 5 4:1.5 6:0.16666666666666666 8:0.5 12:0.16666666666666666 17:0.1111111111111111 19:0.18181818181818182 20:1.5 21:0.25 23:1.0 48:1.0 49:0.007751937984496124 51:1.0 55:0.125 64:0.16666666666666666 80:0.3333333333333333 92:1.0 158:0.3333333333333333 165:0.5 312:1.0 317:1.0 331:0.5 534:0.3333333333333333 562:1.0 641:0.5 682:1.0 2585:1.0 2695:1.0 2724:1.0 2898:1.0 7386:1.0 5 4:2.5 49:0.007751937984496124 51:1.0 55:0.125 68:1.0 96:0.16666666666666666 121:0.018867924528301886 136:1.0 251:1.0 317:1.0 361:1.0 390:0.5 401:1.0 601:0.5 871:1.0 1476:1.0 2296:1.0 5 4:1.0 5:0.1111111111111111 12:0.16666666666666666 17:0.1111111111111111 19:0.09090909090909091 20:1.0 21:0.375 23:1.0 26:0.02702702702702703 48:1.0 49:0.007751937984496124 51:1.0 113:0.5 114:1.0 116:0.1111111111111111 165:0.5 317:1.0 743:1.0 5 4:1.5 8:0.25 12:0.16666666666666666 18:0.3333333333333333 19:0.18181818181818182 21:0.125 23:2.0 24:0.5 26:0.02702702702702703 38:1.0 48:2.0 49:0.007751937984496124 51:1.0 55:0.125 64:0.16666666666666666 71:1.0 121:0.018867924528301886 165:0.5 201:1.0 236:1.0 244:1.0 248:1.0 255:1.0 296:0.5 317:1.0 333:1.0 353:1.0 361:1.0 362:1.0 365:1.0 483:1.0 746:1.0 804:1.0 830:1.0 1546:1.0 1752:1.0 3078:1.0 4107:1.0 4642:1.0 5084:1.0 6081:1.0 5 4:0.5 6:0.16666666666666666 8:0.25 12:0.3333333333333333 19:0.09090909090909091 20:0.5 23:3.0 25:1.0 38:1.0 48:2.0 49:0.007751937984496124 51:1.0 68:1.0 88:1.0 97:0.3333333333333333 98:0.14285714285714285 121:0.018867924528301886 126:0.3333333333333333 136:1.0 154:0.3333333333333333 193:1.0 236:1.0 281:0.3333333333333333 289:0.125 317:1.0 361:1.0 363:1.0 364:1.0 365:1.0 418:1.0 424:1.0 534:0.3333333333333333 1149:1.0 1199:1.0 1202:1.0 2213:1.0 5084:1.0 5 4:1.5 8:0.25 23:2.0 38:1.0 42:1.0 55:0.125 76:1.0 78:1.0 87:0.3333333333333333 115:0.1 116:0.1111111111111111 148:0.5 181:1.0 185:1.0 449:1.0 952:1.0 2384:1.0 6401:1.0 5 4:1.0 7:0.25 11:0.5 15:0.2857142857142857 22:1.0 23:1.0 73:0.5 114:1.0 120:0.2 141:0.25 148:0.5 173:0.5 203:0.3333333333333333 908:1.0 1370:1.0 2176:1.0 5 4:1.5 19:0.09090909090909091 20:0.5 21:0.375 23:1.0 26:0.02702702702702703 58:0.25 64:0.16666666666666666 98:0.14285714285714285 234:1.0 424:1.0 446:0.25 462:1.0 715:1.0 1269:1.0 2288:1.0 2304:1.0 5 4:1.0 5:0.1111111111111111 21:0.25 23:1.0 26:0.05405405405405406 189:1.0 390:0.5 2233:1.0 5 4:1.0 5:0.1111111111111111 12:0.16666666666666666 17:0.1111111111111111 19:0.09090909090909091 20:1.0 21:0.25 23:1.0 55:0.125 64:0.16666666666666666 68:1.0 71:1.0 80:0.3333333333333333 98:0.14285714285714285 176:1.0 288:0.5 354:1.0 366:1.0 488:1.0 740:0.5 1364:1.0 1458:1.0 1617:1.0 1720:1.0 2695:1.0 5 4:0.5 5:0.1111111111111111 11:0.5 20:1.0 23:3.0 48:2.0 49:0.007751937984496124 50:1.0 51:1.0 55:0.25 64:0.16666666666666666 71:1.0 76:1.0 88:2.0 102:1.0 110:1.0 121:0.018867924528301886 129:1.0 236:1.0 244:1.0 253:1.0 315:0.5 316:0.5 428:1.0 521:1.0 550:0.3333333333333333 746:1.0 1742:1.0 2222:2.0 2339:1.0 2766:1.0 6144:1.0 5 4:0.5 12:0.3333333333333333 20:1.0 21:0.25 23:2.0 26:0.02702702702702703 38:1.0 42:1.0 49:0.007751937984496124 50:1.0 51:1.0 55:0.375 93:0.09090909090909091 98:0.2857142857142857 113:0.5 236:1.0 285:1.0 292:0.125 365:1.0 452:1.0 1065:0.5 2339:1.0 4126:1.0 5 17:0.1111111111111111 20:0.5 21:0.125 23:2.0 24:0.5 25:1.0 42:1.0 55:0.125 64:0.3333333333333333 80:0.3333333333333333 88:1.0 121:0.018867924528301886 126:0.3333333333333333 134:0.14285714285714285 156:1.0 280:1.0 459:1.0 553:1.0 1525:1.0
9b1f264d80b5a740a999137c85f6359f23e8a486
e2f1cd4bf054393b04c3e30ca2bcdd4667395efc
/iniciativaJ0.tst
8995d69c2f6f0c382757c0f52648d43953c8de74
[]
no_license
unsegnor/BT
37203462f8672b89b82cf025c5f05c67515263fb
9051eb4b002f68041578bd581668bcc7959bda56
refs/heads/master
2021-01-10T02:05:05.487349
2014-07-04T17:56:31
2014-07-04T17:56:31
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
27
tst
iniciativaJ0.tst
8 8 7 6 5 4 3 2 1
ab822f65743a6f85286bef6af5fef608b886ab59
27fecbbeb6c49dcf03b9bddf1b867c31e13a3825
/Simulações/Relatório 03/Tarefa2ItemeCond5.sce
606d3c7216596f301b84afa51f65ff2d48162cb4
[]
no_license
LucasHattoriCosta/Poli
42c9fc2d34c31e01336265fbdac3e4921d56e096
b1ac609c3675539b4e921909c35ea196ffc44df3
refs/heads/master
2023-03-15T12:22:03.745943
2020-06-29T17:32:48
2020-06-29T17:32:48
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
884
sce
Tarefa2ItemeCond5.sce
//Tarefa 2 - Flavius //Condições iniciais pi=%pi g=9.8 //Gravidade em m/s r=1e-3 //Raio da esfera ro=7850 //Densidade da esfera vol=(4/3)*pi*r^3 //Volume da esfera m=ro*vol //Massa da esfera R=1 //Raio do tubo (m) //Item a //Espaço de estados function [y_dot]=deriva(t,y0) k=y0(1,:) kdot=y0(2,:) dk_dt=kdot d2k_dt2=-(g/R)*sin(k) y_dot=[dk_dt;d2k_dt2] endfunction //Item e //5) theta0=pi theta_dot0=0 theta = -pi:0.05:pi a=(R*theta_dot0)**2/(2*g)+R*sin(theta0) //Tempo t0=0 dt=0.05 tf=10 t=t0:dt:tf //Integrações X = ode([theta0;theta_dot0],t0,t,deriva) Y = integrate('R/sqrt(2*g*(a-R*sin(theta)))','theta',0,theta) //1) theta(t) clf() scf(0) subplot(121) title('theta=theta(t)') xlabel('t(s)') ylabel('theta(rad)') plot(t,X(1,:)) //2) t(theta) subplot(122) title('t=t(theta)') xlabel('theta(rad)') ylabel('t(s)') plot(X(1,:),t) disp(4*(max(Y)-min(Y)))
658fd7aa1bbf46c5ca16650a30f5155848bcb53c
449d555969bfd7befe906877abab098c6e63a0e8
/1958/CH2/EX2.8/Chapter2_example8.sce
e35372e2c2d771ffce7bfc451a9607ce97286409
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
374
sce
Chapter2_example8.sce
clc clear //Input data m=50//Mass of the object in kg v=8//Speed in m/s t=4//Time taken in s //Calculations a=(v-0)/t//Acceleration in m/s^2 s=(v^2/(2*a))//Distance in m W=(m*a*s)//Workdone in J P=(W/t)//Power delivered in watt //Output printf('Workdone on the object is %i J \n The average power delivered by the force in the first %i s is %i watt',W,t,P)
aaaba35309fe03310ccde4e950529da50262ffc2
449d555969bfd7befe906877abab098c6e63a0e8
/761/CH21/EX21.1/21_1.sce
fcd058ed85578e782dc87ae46ee06aabc645ee6c
[]
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
267
sce
21_1.sce
clc; // page no 795 // prob no 21.1 v=100;//in km/hr // first convert speed into m/sec v1=(100*10^3)/3600;//in km/sec //part a) r=10^4;//in m t=(2*r)/v1; disp('sec',t,'Handoff time is'); //part b) r=500;//in m t=(2*r)/v1; disp('sec',t,'Handoff time is');
d585df0d71fd76f050a3a28cad06c11b7c4ef4c2
013d40a03b9bd105372e0b8d64920f66d59dfa4f
/quads_back.tst
94c6b7069ccb9a0b1e9626f4a86b25908bec85e6
[]
no_license
plockparty/mannheim
c66a3aad3b5be480fc3c4256cb6a91ecdff0782e
da6617f90f99b7ab3ac1c08719a42416dbe52969
refs/heads/master
2020-08-28T13:10:39.194067
2019-10-26T13:02:31
2019-10-26T13:02:31
217,709,434
0
0
null
null
null
null
UTF-8
Scilab
false
false
678
tst
quads_back.tst
204 270 402 286 415 556 199 548 767 262 967 260 972 554 765 558 1418 271 1649 275 1640 570 1427 572 1975 266 2198 265 2196 599 1982 598 2582 256 2796 271 2792 571 2577 571 3143 303 3326 297 3331 566 3139 561 171 856 443 859 442 1283 179 1283 733 856 992 867 990 1283 748 1288 1398 875 1665 877 1670 1300 1402 1296 1959 871 2215 873 2214 1299 1960 1298 2551 898 2802 900 2797 1297 2544 1294 3099 900 3338 901 3348 1290 3093 1296 169 1650 430 1665 432 2063 166 2079 725 1662 985 1663 983 2074 737 2070 1409 1665 1672 1667 1669 2083 1411 2076 1964 1658 2218 1662 2218 2078 1955 2074 2543 1651 2802 1658 2804 2079 2549 2079 3086 1653 3351 1656 3343 2077 3098 2074
3bf2ac29fe82cd27a39ff8210791b82bd79f179a
527c41bcbfe7e4743e0e8897b058eaaf206558c7
/NZFunctions/StatisticalFunctions/FLEuclideanDistNZ-UM-01.tst
e21367b92f617eb755b11d8facbae893a289a92f
[]
no_license
kamleshm/intern_fuzzy
c2dd079bf08bede6bca79af898036d7a538ab4e2
aaef3c9dc9edf3759ef0b981597746d411d05d34
refs/heads/master
2021-01-23T06:25:46.162332
2017-07-12T07:12:25
2017-07-12T07:12:25
93,021,923
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,256
tst
FLEuclideanDistNZ-UM-01.tst
-- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC. -- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade -- secret or copyright law. Dissemination of this information or reproduction of this material is -- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC. -- Functional Test Specifications: -- -- Test Category: Statistical Functions -- -- Last Updated: 05-30-2017 -- -- Author: <kamlesh.meena@fuzzyl.com> -- -- BEGIN: TEST SCRIPT -- BEGIN: TEST(s) -----******************************************************************************************************************************* ---FLEuclideanDist -----**************************************************************** SELECT a.Country, b.Country, FLEuclideanDist(a.Consumption, b.Consumption) AS FLEuclideanDist FROM tblProteinConsump a, tblProteinConsump b WHERE b.ProteinCode = a.ProteinCode AND b.CountryCode <> a.CountryCode GROUP BY a.Country, b.Country ORDER BY 1,2 LIMIT 20; ------------------------------------------------------------------------------------- -----****************************************************************
0ac31c1907c07fc2f21a16d1ccf74522875aebd1
991911b2a5fe25b4515d60ea80978b8550f90178
/SCILab/Scripts/graficos_exemplo3d2.sce
624da4abd942c632650e6754f5352a0f4cc026e7
[]
no_license
fongoses/comunicacao-dados-2013-2
48d2f0cd592ea50c8b1ec6f815c8de62f122c4de
2981e42c5be4550ccd8dd4d4ef93b4397a1ea0d3
refs/heads/master
2016-09-10T10:44:16.480842
2013-12-17T12:48:45
2013-12-17T12:48:45
32,294,010
0
0
null
null
null
null
UTF-8
Scilab
false
false
198
sce
graficos_exemplo3d2.sce
kp=xget("pixmap");xset("pixmap",1); t=-%pi:0.3:%pi; for i=20:-1:1, xset("wwpc"); plot3d(t,t,sin((i/10)*t)'*cos((i/10)*t),35,45," ",[2,2,4]) xset("wshow"); end xset("pixmap",kp);
09b093ae81c7485a95e78905b142b7382028d72f
333d6160f9a6d9e23a6bea06cd03e5e8fa8785a9
/RobotLab2/SciLab/CalculateR.sce
bce06f79e82018acb79d0621174787a10f54045c
[ "MIT" ]
permissive
DmitryIo/ROBOTS
6f6bb12a8e08dd28024136ee1a8a84ea7254da60
777f0884a098c4f21d044985c25a8be276334116
refs/heads/master
2023-04-30T12:52:54.082977
2021-05-17T19:55:34
2021-05-17T19:55:34
294,091,170
3
0
null
null
null
null
UTF-8
Scilab
false
false
303
sce
CalculateR.sce
Rfw = 0 Rrv = 0 fw1 = 0; rv1 = 0; fw2 = 0; rv2 = 0; for i = 1:10 fw1 = fw1 + fwData(i, 1) * fwData(i, 2); fw2 = fw2 + fwData(i, 2) * fwData(i, 2); rv1 = rv1 + rvData(i, 1) * rvData(i, 2); rv2 = rv2 + rvData(i, 2) * rvData(i, 2); end Rfw = fw1/fw2 Rrv = rv1/rv2 R = (Rfw + Rrv) * 0.5
7caf04b8acd31fd7baf20d4fdeddcfef9f389523
e182a95b50904008697c55b376261f8a6c38b225
/display_bmp.sce
637631eb1ea9ce66e5e4fe901be81caabd9be42a
[]
no_license
RhinomanUK/Scilab
210fb0ca7f7776d2b271bb243140aa8aa837dd81
63519c7f6ada71f1baf6f72633247ea518e6eeb3
refs/heads/master
2021-09-07T12:06:29.767806
2018-02-22T16:33:57
2018-02-22T16:33:57
118,903,494
0
0
null
null
null
null
UTF-8
Scilab
false
false
208
sce
display_bmp.sce
/* RhinoPower Ltd v0.1 22nd February 2018 Display bitmap using the Image processing Toolbox */ filename = uigetfile('*.bmp','all image files'); Image = imread(filename); imshow(Image);
cbdc3ae76fd533b8ea79456d89f985f9f10f3ca1
449d555969bfd7befe906877abab098c6e63a0e8
/26/CH1/EX1.1.7/1_1_7.sce
b4fb8a935cf67ebc870694eb2e39e556e14e7b3d
[]
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
200
sce
1_1_7.sce
disp('the augmented matrix is:') a=[1 7 3 -4;0 1 -1 3;0 0 0 1;0 0 1 -2] disp(a) disp('interchange R3 and R4') a([3,4],:)=a([4,3],:) disp(a) disp('from R4 we get 0=1') disp('hence, no solution')
c669f6c01f6ac51cf7dfbafcd483e7b7407e4c69
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH14/EX14.12/example14_12.sce
3dd28acb35d4a8e13fbd920a484b5c114c3ec716
[]
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
607
sce
example14_12.sce
clc // Given that lambda = 3.132e-7 // wavelength of light in meter V = 1.98 // stopping potential in V h = 6.62e-34 // Planck constant in J-sec c = 3e8 // speed of light in m/sec e = 1.6e-19 // charge on an electron in C m = 9.1e-31 // mass of an electron in kg // Sample Problem 12 on page no. 14.24 printf("\n # PROBLEM 12 # \n") printf("Standard formula used \n ") printf(" 1/2 m*v^2 = h*(mu - mu_0) \n") E = e * V lambda_ = 1 / ((1 / lambda) - (E / (h * c))) f = c / lambda_ w = ((h * c) / lambda_) printf("\n Work function is %e J.\n Maximum energy is %e J.\n Threshold frequency is %e Hz.",w,E,f)
bee7d78a3b461fed4798cf630d760c2a090166c6
449d555969bfd7befe906877abab098c6e63a0e8
/845/CH2/EX2.13/Ex2_13.sce
eb4c6330f04315b62c877ffdda4da460fdaa5bb2
[]
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_13.sce
//Example 2.13 clc clear a = [-6 11 -6 1]; maxit = 3; for iter = 1:maxit a = [a(4)^2 -(a(3)^2 -2*a(2)*a(4)) (a(2)^2 - 2*a(1)*a(3)) -a(1)^2]; root = abs([a(4)/a(3) a(3)/a(2) a(2)/a(1)])^(1/(2^iter)); end root = round(root*10^5) / 10^5; disp(root,"Estimated roots for the polynomial are: ")
a4d5a66beaea19f363c8ce9de66973c0629963f4
7c3f5d0908e4b8296e6f510e1b52197d07f7aa50
/Resultados obtidos com o codigo de ang(t)/CoeficientesProjetoCN.sce
7f3e8a0c0d3f08e77023b9535056476fc2fcc2b2
[]
no_license
mtxslv/Projetos-Calculo-Numerico
883da40114255c871b47fb1882e3890a63d71d9d
96949e60d384d973f048712a5222796dc989a088
refs/heads/master
2020-03-26T08:43:46.551491
2018-09-01T23:19:56
2018-09-01T23:19:56
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
989
sce
CoeficientesProjetoCN.sce
function [w0​, r​] = coeficientes(t​, ang​, p​) //vetores de tempo e angulo, e o período n=length(t​); //numero de elementos em t w0​=2*%pi/p​; // frequencia em radianos A=[n sum(cos(w0​*t​)) sum(sin(w0​*t​)); sum(cos(w0​*t​)) sum(cos(w0​*t​).*cos(w0​*t​)) sum(cos(w0​*t​).*sin(w0​*t​)); sum(sin(w0​*t​)) sum(cos(w0​*t​).*sin(w0​*t​)) sum(sin(w0​*t​).*sin(w0​*t​))]; B=[sum(ang​); sum(ang​.*cos(w0​*t​)); sum(ang​.*sin(w0​*t​));]; r​=inv(A)*B; endfunction t=[00 106 305 644 745 815 1020 1393];//tempo de cada imagem ang=[1.530320 1.752424 1.975001 1.600777 1.411812 1.284921 1.088641 1.604046]; //ângulos de cada imagem, respectivamente; p = 1393; //período ou tempo para uma volta completa [w0,r]=coeficientes(t,ang,p); disp(w0, "w0= "); disp(r, "r= "); figure plot(t,ang,'.'); tn=min(t):0.001:max(t); angn=r(1)+r(2)*cos(w0*tn)+r(3)*sin(w0*tn); plot(tn,angn,'k'); xgrid;
69833398c00b9476dd98aec74ff3e0cf732d8bdd
449d555969bfd7befe906877abab098c6e63a0e8
/1226/CH12/EX12.5/EX12_5.sce
e0c12adaedf98f5adad5e520f9831865d18a5767
[]
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,056
sce
EX12_5.sce
clc;funcprot(0);//EXAMPLE 12.5 // Initialisation of Variables N=1800;............//Engine rpm theta=32;...........//Crank Travel in degree ip=118.2;................//Injection Pressure in bar cp=31.38;.................//Combustion chamber Pressure in bar Cd=0.9;...............//co-efficient of discharge of orifice rhow=1000;...........//Density of water in kg/m^3 api = 32;..............//API in degree pw=11;..................//Power Output in kW d=0.47;...................//Fuel Injection orifice diameter in mm //Calculation spgr= 141.5/(131.5+api);............//Specific Gravity tfic=(theta/360)*(60/N);....//Time for Fuel Injection per Cycle in sec vf = Cd*sqrt((2*(ip-cp)*10^5)/(spgr*rhow));.............//Actual fuel velocity of injection in m/sec mf=vf*spgr*rhow*(%pi/4)*(d/1000)^2; tncp=(N/2)*60;...............//Total no of cycles per hour FIPC=mf*tfic;.................//Mass of fuel injected per cycle in kg/cycle fc=FIPC*tncp*(1/pw);...................//Fuel consumption in kg/kWh disp(fc,"Fuel consumption in kg/kWh :")
ba8eddc30398188fec6e64db7aca8dc7ccab5870
44a15e4bb1e6caceda9ee02880890d520e993306
/Foundation Code/PureSwitchMadness.sce
68eed92bb16c084c00c28d2a5384480f7138a46a
[]
no_license
CNL-R/TripleSequences
3ac8be0b491b3a77e3a5fd859c9580d6be650a78
46d75c6d074b4e011961916a908c1d21d8944784
refs/heads/master
2021-01-01T19:14:21.755538
2017-08-16T21:18:27
2017-08-16T21:18:27
98,548,330
0
0
null
null
null
null
UTF-8
Scilab
false
false
6,074
sce
PureSwitchMadness.sce
# Header section (set default parameters) active_buttons = 2; button_codes = 1,252; pulse_width = 5; #write_codes = true; response_matching = simple_matching; scenario_type = trials; no_logfile = false; default_background_color = 50, 50, 50; #SDL portion (create objects and trials) begin; bitmap { filename = "red_circle505050.bmp"; preload = true; width = 200; height = 200;} vis_stim1; wavefile {filename = "1000_57.wav"; preload = true;} aud_tone1; wavefile {filename = "silence_57.wav"; preload = true;} no_tone; text { caption = "+"; font_size = 16; font_color = 255,255,255; } fixcross; text { caption = "Take a short break, press the '1' button when you are ready to proceed"; font_size = 20; font_color = 0,255,255; } breaktxt; text { caption = "a"; font_size = 20; font_color = 0,255,255; } counttxt1; picture { text breaktxt; x = 0; y = 0; text counttxt1; x = 0; y = -200; } break_pic; picture { text fixcross; x = 0; y = 0;} just_fix; picture { text fixcross; x = 0; y = 0;} default; picture { text fixcross; x=0; y = 0; bitmap vis_stim1; x = 0; y = 150;} vis_on; sound { wavefile no_tone;} silent; sound { wavefile aud_tone1;} aud_on; trial { stimulus_event { picture vis_on; time = 0; duration = 52; } vis_se; stimulus_event { sound silent; time = 0; } silent_se; } vis; trial { stimulus_event { picture just_fix; time = 0; } fix_se; stimulus_event {sound aud_on; time = 0; } aud_se; } aud; trial { stimulus_event { picture vis_on; time = 0; duration = 52; } av_vis_se; stimulus_event {sound aud_on; time = 0; } av_aud_se; } av; trial { trial_duration = forever; trial_type = specific_response; terminator_button = 2; stimulus_event { picture break_pic; target_button = 2; } break_event; } break_time; trial { nothing{}; time = 0; port_code = 253;} pause_off; trial { nothing{}; time = 0; port_code = 254;} pause_on; #PCL portion (run trials and manipulate objects) begin_pcl; int stimtype; int last; default.present(); array <int> block_order[] = {1,1,2,2,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9}; block_order.shuffle(); loop int blocknum = 0; until blocknum == block_order.count()+1 begin blocknum = blocknum + 1; if blocknum < block_order.count()+1 then counttxt1.set_caption( "You are about to start block " + string(blocknum) + " out of " + string(block_order.count()) + " blocks" ); counttxt1.redraw(); term.print_line("Break Time"); break_time.present(); end; if block_order[blocknum] == 4 then stimtype = random(1,2); elseif block_order[blocknum] == 5 then stimtype = random(2,3); elseif block_order[blocknum] == 6 then stimtype = random(1,2); if stimtype == 2 then stimtype = 3; end; elseif block_order[blocknum] > 6 then last = 100; end; wait_interval(50); pause_off.present(); default.present(); wait_interval(1500); loop int stimnum = 0; until stimnum == 50 begin stimnum = stimnum + 1; if block_order[blocknum] < 4 then stimtype = block_order[blocknum]; aud_se.set_port_code(block_order[blocknum]+1); aud_se.set_event_code(string(block_order[blocknum]+1)); silent_se.set_port_code(block_order[blocknum]+1); silent_se.set_event_code(string(block_order[blocknum]+1)); av_aud_se.set_port_code(block_order[blocknum]+1); av_aud_se.set_event_code(string(block_order[blocknum]+1)); elseif block_order[blocknum] == 4 then if stimtype == 1 then stimtype = 2; silent_se.set_port_code(23); silent_se.set_event_code("23"); elseif stimtype == 2 then stimtype = 1; aud_se.set_port_code(22); aud_se.set_event_code("22"); end; elseif block_order[blocknum] == 5 then if stimtype == 2 then stimtype = 3; av_aud_se.set_port_code(36); av_aud_se.set_event_code("36"); elseif stimtype == 3 then stimtype = 2; silent_se.set_port_code(33); silent_se.set_event_code("33"); end; elseif block_order[blocknum] == 6 then if stimtype == 1 then stimtype = 3; av_aud_se.set_port_code(34); av_aud_se.set_event_code("34"); elseif stimtype == 3 then stimtype = 1; aud_se.set_port_code(32); aud_se.set_event_code("32"); end; elseif block_order[blocknum] > 6 then if block_order[blocknum] == 7 then stimtype = random(1,2); if stimtype == 1 then aud_se.set_port_code(last+3); aud_se.set_event_code(string(last+3)); last = 4 elseif stimtype == 2 then silent_se.set_port_code(last+6); silent_se.set_event_code(string(last+6)); last = 2 elseif stimtype == 3 then av_aud_se.set_port_code(last+9); av_aud_se.set_event_code(string(last+9)); last = 3 end elseif block_order[blocknum] == 8 then stimtype = random(2,3); if stimtype == 1 then aud_se.set_port_code(last+3); aud_se.set_event_code(string(last+3)); last = 44 elseif stimtype == 2 then silent_se.set_port_code(last+6); silent_se.set_event_code(string(last+6)); last = 42 elseif stimtype == 3 then av_aud_se.set_port_code(last+9); av_aud_se.set_event_code(string(last+9)); last = 43 end elseif block_order[blocknum] == 9 then stimtype = random(1,2); if stimtype == 2 then stimtype = 3 end; if stimtype == 1 then aud_se.set_port_code(last+3); aud_se.set_event_code(string(last+3)); last = 54 elseif stimtype == 2 then silent_se.set_port_code(last+6); silent_se.set_event_code(string(last+6)); last = 52 elseif stimtype == 3 then av_aud_se.set_port_code(last+9); av_aud_se.set_event_code(string(last+9)); last = 53 end end; end; if stimtype == 1 then aud.present(); elseif stimtype == 2 then vis.present(); elseif stimtype == 3 then av.present(); end; term.print(stimnum); term.print("\n"); loop int time = clock.time(); int isi = random(1000,2500); until clock.time() - time > isi begin end end; wait_interval(50); pause_on.present(); wait_interval(50); end
e0076cb74db20dfb741e49140c7d26a6081d488d
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set6/s_Electrical_Measurements_Measuring_Instruments_K._Shinghal_2318.zip/Electrical_Measurements_Measuring_Instruments_K._Shinghal_2318/CH3/EX3.61/ex_3_61.sce
77e965398c4ee4d5a96a257f4e324c4df28dd21b
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
273
sce
ex_3_61.sce
errcatch(-1,"stop");mode(2);//Example 3.61;resistance and inductance ; ; p=0;// r2=10;//ohms r4=900;//ohms c3=0.9;//micro-F c4=0.15;//micro-F r=((r2*c3*10^-6)/(c4*10^-6));//ohms l=r2*r4*c3*10^-3;//mH disp(r,"resistance is ,(ohm)=") disp(l,"inductance is ,(mH)=") exit();
ac2435baf82f9a9052bf1b93f00bcacc1c246bcb
449d555969bfd7befe906877abab098c6e63a0e8
/2198/CH1/EX1.40.17/Ex1_40_17.sce
09653795087331c81a029400ebfc721d8c6b83b7
[]
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
360
sce
Ex1_40_17.sce
//Ex 1.40.17 clc;clear;close; format('v',9); //Given : q=1.6*10^-19;//Coulomb Dn=35;//cm^2/s x=[0 2];//micro meter n=[10^17 6*10^16];//per cm^3 plot(x,n); title('n Vs x'); xlabel('x(micro meter)'); ylabel('n(electrons per cm^3)'); dnBYdx=(n(2)-n(1))/(x(2)-x(1))/10^-4;//gradient Jn=q*Dn*dnBYdx;//A/cm^2 disp(Jn,"Current density(A/cm^2) : ");
5581a16f1f5aeb378bca03610b0033e067382955
449d555969bfd7befe906877abab098c6e63a0e8
/1931/CH1/EX1.10/10.sce
166bab6dd19be65099813feb8449018c3c2bfa47
[]
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
732
sce
10.sce
clc clear //INPUT DATA V=1500//volume of room in m^3 a1=0.03//average sound coefficient for wall in sabine a2=0.06//average sound coefficient for the ceiling in sabine a3=0.8//average sound coefficient for the floor in sabine S1=260//The wall area of the room in m^2 S2=140//The floor area of the room in m^2 S3=140//The ceiling area of the room in m^2 //CALCULATION a=((a1*S1)+(a2*S2)+(a3*S3))/(S1+S2+S3)//The average absorbtion coefficient in O.W.U TS=S1+S2+S3//total area of the room in m^2 x=(a*TS)//Total sound absorbtion of the room in O.W.U-m^2 T=((0.167*V)/x)//The reverberation time in sec //OUTPUT printf('The average absorbtion coefficient is %3.4f O.W.U \n The reverberation time is %3.4f sec',a,T)
391c7e7176e26a8111415d7d7d9266a506ffdf87
a62e0da056102916ac0fe63d8475e3c4114f86b1
/set7/s_Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096.zip/Electronic_Measurements_And_Instrumentation_R._K._Rajput_2096/CH1/EX1.12/ex_1_12.sce
3173e41ab2b000261d2810a7b387cc3a48914354
[]
no_license
hohiroki/Scilab_TBC
cb11e171e47a6cf15dad6594726c14443b23d512
98e421ab71b2e8be0c70d67cca3ecb53eeef1df6
refs/heads/master
2021-01-18T02:07:29.200029
2016-04-29T07:01:39
2016-04-29T07:01:39
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
245
sce
ex_1_12.sce
errcatch(-1,"stop");mode(2);//Example 1.12// resolution ; ; //given data : a=50; // uniform scale b=50; // full scale reading in volts c=1/10; O=a/b; R=O*c; disp(O,"one scale division,O = (v)") disp(R,"resolution,R = (v)") exit();
a80089db6055b3809578246ed7b8f8d7efa5dab0
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH18/EX18.13/Ex18_13.sce
770d8422ce1a73ad51b2d0e1cfd2956cb3bb58e2
[]
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
429
sce
Ex18_13.sce
clc; //e.g 18.13 Vcc=12; Rc=3.3*10**3; Re=100; Ie=2*10**-3; Vbe=0.7; alpha=0.98; Ic=alpha*Ie; disp('mA',Ic*10**3,"Ic="); Vb=Vbe+(Ie*Re); disp('V',Vb*1,"Vb="); Vc=Vcc-(Ic*Rc);//collector to emitter voltage disp('V',Vc*1,"Vc="); R2=20*10**3; IR2=Vc/R2; disp('mA',IR2*10**3,"IR2="); Ib=Ie-Ic; disp('mA',Ib*10**3,"Ib="); IR1=IR2+Ib; disp('mA',IR1*10**3,"IR1="); R1=(Vc-Vb)/IR1; disp('kohm',R1*10**-3,"R1=");
cca7aedfe7f5d11c3a0a71d75984fff4a56c4562
1b969fbb81566edd3ef2887c98b61d98b380afd4
/Rez/bivariate-lcmsr-post_mi/bfi_n_bfa_mt/~BivLCM-SR-bfi_n_bfa_mt-PLin-VLin.tst
62d3feb51d674ea70129697f119f04c4c6083ed8
[]
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-bfi_n_bfa_mt-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.485018D+00 2 -0.708666D-02 0.387700D-02 3 0.782565D-01 -0.156195D-02 0.397882D+00 4 -0.166237D-02 0.672286D-03 -0.574023D-02 0.336131D-02 5 -0.868272D-03 0.128113D-03 -0.182007D-02 0.574689D-04 0.231606D-02 6 0.611273D-04 0.463550D-05 -0.361834D-03 0.140833D-03 -0.143425D-03 7 -0.829490D-03 -0.988623D-05 -0.494459D-03 0.642552D-04 0.783956D-04 8 -0.144338D-02 0.117709D-03 -0.159206D-03 0.112888D-03 -0.957836D-04 9 -0.749041D+00 -0.483619D-02 -0.773245D+00 0.271573D-01 0.354062D-01 10 -0.272853D-01 0.116831D-01 -0.376703D-01 0.113841D-01 0.166429D+00 11 0.161639D-01 -0.289319D-02 0.159892D+00 -0.536168D-02 -0.401816D-01 12 0.239413D+00 -0.150613D-02 0.442518D+00 0.154882D-01 -0.347278D-01 13 -0.529741D-01 -0.173329D-02 -0.113606D+00 0.129969D-01 0.104911D-01 14 0.506121D-02 0.302877D-01 0.186114D+00 0.668601D-02 -0.819236D-02 15 -0.447770D+00 0.441493D-01 -0.128573D+01 0.615455D-02 -0.999940D-01 16 0.599630D-01 -0.118274D-02 -0.180036D-01 -0.275073D-03 -0.847652D-03 17 0.901650D-03 0.574745D-03 0.826936D-02 -0.274097D-04 -0.559131D-03 18 -0.147518D+01 0.101767D-01 -0.600422D+00 -0.154457D-01 0.525407D-01 19 -0.166393D-01 0.407929D-02 0.659282D-01 0.652170D-02 0.472509D-02 20 -0.687738D+00 -0.389542D-02 0.122288D+01 0.467134D-02 -0.213046D-01 21 -0.190251D-01 -0.266691D-02 -0.470241D-01 -0.551869D-02 -0.325228D-02 22 0.819679D-02 -0.364645D-04 0.397413D-02 0.462681D-03 -0.261580D-03 23 0.102470D-01 0.229785D-02 -0.112322D-01 0.102002D-01 0.699800D-03 24 0.402815D-02 0.255489D-03 0.366510D-02 -0.150919D-03 -0.235229D-03 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 0.115108D-02 7 0.629868D-03 0.167132D-02 8 0.229011D-03 -0.532829D-03 0.348862D-02 9 0.979488D-03 0.183195D-01 0.339045D-01 0.126553D+03 10 -0.772677D-02 0.117028D-01 -0.156957D-01 0.304344D+01 0.329110D+02 11 -0.788110D-02 0.400773D-01 -0.606988D-01 0.179363D+02 -0.313855D+01 12 0.251923D-01 -0.304296D-01 0.729919D-01 0.879972D+00 -0.949390D+00 13 0.746744D-01 0.765013D-01 0.755783D-03 0.184187D+01 0.160621D+01 14 0.219535D-01 -0.665430D-01 0.354258D+00 0.220865D+01 0.420025D+00 15 -0.337762D-02 -0.163914D-01 0.578043D-01 -0.183379D+01 -0.198366D+02 16 -0.417148D-04 0.231060D-02 -0.208793D-02 0.147983D+01 -0.255506D+00 17 -0.689914D-04 -0.431352D-03 0.279200D-04 -0.267293D+00 -0.499509D-01 18 -0.291116D-01 -0.169416D-01 -0.181127D-01 0.208845D+01 -0.273156D+00 19 -0.651509D-02 0.543587D-02 -0.625947D-02 -0.142994D+01 -0.137226D+01 20 -0.268996D-01 0.546426D-01 -0.283994D+00 0.870985D+01 0.683730D+01 21 0.844011D-02 -0.333516D-02 0.800557D-02 0.304708D+01 0.700215D+00 22 -0.309987D-03 -0.423660D-03 -0.159675D-03 -0.914893D-01 0.641475D-02 23 -0.167297D-02 0.355523D-03 -0.110761D-02 -0.470557D+00 -0.669894D-01 24 -0.112949D-04 -0.118786D-03 -0.102962D-03 0.538148D-01 -0.333398D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 0.454195D+02 12 -0.681169D+00 0.104012D+03 13 -0.230855D+01 0.114525D+01 0.147448D+02 14 -0.709107D+01 0.589564D+01 0.231972D+00 0.676514D+02 15 0.575609D+01 0.142052D+02 0.172612D+01 0.492929D+01 0.549339D+03 16 0.249584D+00 -0.279357D+00 -0.153168D-01 -0.235096D+00 0.414224D+01 17 -0.452266D-01 -0.334576D-01 -0.539648D-01 0.176654D-01 -0.257385D+01 18 -0.649956D+00 0.287806D+01 -0.112995D+01 -0.114917D+02 0.870587D+02 19 -0.100575D+01 -0.182425D+01 0.605144D+00 0.859360D+00 0.273554D+01 20 0.174242D+02 -0.203712D+02 -0.503893D+01 -0.471117D+02 0.213212D+02 21 0.142636D+01 0.194615D+01 -0.671485D+00 -0.112340D+01 -0.145240D+01 22 -0.518515D-01 -0.340133D-01 -0.434648D-01 0.200609D-01 -0.233752D+00 23 0.660343D+00 0.502943D+00 -0.184100D+00 -0.304163D+00 0.127910D+00 24 -0.622702D-01 -0.393108D-01 0.271795D-01 -0.220827D-01 -0.757199D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 0.805338D+00 17 -0.645645D-01 0.272219D-01 18 0.104395D+01 -0.336286D+00 0.308773D+03 19 0.460082D-01 -0.937255D-02 -0.113900D+01 0.717490D+01 20 0.218979D+00 -0.157433D+00 0.101624D+03 -0.570439D+01 0.435594D+03 21 0.242103D+00 -0.101824D-01 0.645520D+01 -0.649645D+01 0.702376D+01 22 -0.111843D-01 0.234748D-02 -0.141702D+01 -0.275476D-01 -0.355315D+00 23 0.346360D-01 -0.196511D-03 0.726655D+00 -0.800396D-01 0.483474D+01 24 0.287627D-02 0.119773D-02 -0.256331D+00 0.189416D-01 -0.176599D+01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 0.792627D+01 22 -0.560566D-01 0.156184D-01 23 0.430188D+00 -0.924477D-02 0.729464D+00 24 -0.338082D-01 0.293873D-02 -0.632938D-01 0.179973D-01 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 1.000 2 -0.163 1.000 3 0.178 -0.040 1.000 4 -0.041 0.186 -0.157 1.000 5 -0.026 0.043 -0.060 0.021 1.000 6 0.003 0.002 -0.017 0.072 -0.088 7 -0.029 -0.004 -0.019 0.027 0.040 8 -0.035 0.032 -0.004 0.033 -0.034 9 -0.096 -0.007 -0.109 0.042 0.065 10 -0.007 0.033 -0.010 0.034 0.603 11 0.003 -0.007 0.038 -0.014 -0.124 12 0.034 -0.002 0.069 0.026 -0.071 13 -0.020 -0.007 -0.047 0.058 0.057 14 0.001 0.059 0.036 0.014 -0.021 15 -0.027 0.030 -0.087 0.005 -0.089 16 0.096 -0.021 -0.032 -0.005 -0.020 17 0.008 0.056 0.079 -0.003 -0.070 18 -0.121 0.009 -0.054 -0.015 0.062 19 -0.009 0.024 0.039 0.042 0.037 20 -0.047 -0.003 0.093 0.004 -0.021 21 -0.010 -0.015 -0.026 -0.034 -0.024 22 0.094 -0.005 0.050 0.064 -0.043 23 0.017 0.043 -0.021 0.206 0.017 24 0.043 0.031 0.043 -0.019 -0.036 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 1.000 7 0.454 1.000 8 0.114 -0.221 1.000 9 0.003 0.040 0.051 1.000 10 -0.040 0.050 -0.046 0.047 1.000 11 -0.034 0.145 -0.152 0.237 -0.081 12 0.073 -0.073 0.121 0.008 -0.016 13 0.573 0.487 0.003 0.043 0.073 14 0.079 -0.198 0.729 0.024 0.009 15 -0.004 -0.017 0.042 -0.007 -0.148 16 -0.001 0.063 -0.039 0.147 -0.050 17 -0.012 -0.064 0.003 -0.144 -0.053 18 -0.049 -0.024 -0.017 0.011 -0.003 19 -0.072 0.050 -0.040 -0.047 -0.089 20 -0.038 0.064 -0.230 0.037 0.057 21 0.088 -0.029 0.048 0.096 0.043 22 -0.073 -0.083 -0.022 -0.065 0.009 23 -0.058 0.010 -0.022 -0.049 -0.014 24 -0.002 -0.022 -0.013 0.036 -0.043 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 1.000 12 -0.010 1.000 13 -0.089 0.029 1.000 14 -0.128 0.070 0.007 1.000 15 0.036 0.059 0.019 0.026 1.000 16 0.041 -0.031 -0.004 -0.032 0.197 17 -0.041 -0.020 -0.085 0.013 -0.666 18 -0.005 0.016 -0.017 -0.080 0.211 19 -0.056 -0.067 0.059 0.039 0.044 20 0.124 -0.096 -0.063 -0.274 0.044 21 0.075 0.068 -0.062 -0.049 -0.022 22 -0.062 -0.027 -0.091 0.020 -0.080 23 0.115 0.058 -0.056 -0.043 0.006 24 -0.069 -0.029 0.053 -0.020 -0.024 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 1.000 17 -0.436 1.000 18 0.066 -0.116 1.000 19 0.019 -0.021 -0.024 1.000 20 0.012 -0.046 0.277 -0.102 1.000 21 0.096 -0.022 0.130 -0.861 0.120 22 -0.100 0.114 -0.645 -0.082 -0.136 23 0.045 -0.001 0.048 -0.035 0.271 24 0.024 0.054 -0.109 0.053 -0.631 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 1.000 22 -0.159 1.000 23 0.179 -0.087 1.000 24 -0.090 0.175 -0.552 1.000
b54f06dea7869c6b99b8617153afe2cee3d319dc
449d555969bfd7befe906877abab098c6e63a0e8
/1553/CH32/EX32.1/32Ex1.sce
71eb0ac4be061bd9855cdd0a58da5ee59d1206d1
[]
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
32Ex1.sce
//Chapter 32 Ex 1 clc; clear; close; amt=930; R=3; t=8; PW=(100*amt)/(100+(R*t)); TD=amt-PW; mprintf("The present worth and true discount of Rs.930 due 3yrs at 8 percent per annum Rs %d and Rs %d",PW,TD);
0b4c9b7298767052cf734cc45c7d56a52315df54
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.3/Unix-Windows/scilab-2.3/macros/scicos/getblock.sci
f9245491d27c7de43835b0c5ec904360b38f4e6e
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain", "MIT" ]
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
326
sci
getblock.sci
function k=getblock(objs,pt) n=size(objs) x=pt(1);y=pt(2) data=[] for i=2:n k=i o=objs(i) if o(1)=='Block'|o(1)=='Text' then [orig,sz]=o(2)(1:2);dx=sz(1)/7;dy=sz(2)/7 data=[(orig(1)-dx-x)*(orig(1)+sz(1)+dx-x),.. (orig(2)-dy-y)*(orig(2)+sz(2)+dy-y)] if data(1)<0&data(2)<0 then return,end end end k=[]
4c285441d6a9a5ad901955aad4d7b36b5ca2fe08
2c2dc93267283e4aebcffffd5bd76e19ddcf5cc7
/output/C45-C.glass/Prob-result8.tst
a94355a870895765914794912f3709eaafe2627c
[]
no_license
joseangeldiazg/probabilistic_keel
c9cf4ddc2cf750cbbeca88e6f84218084892ae1f
6c5ddf8c98cc7431d523b291e521d1e8607dc662
refs/heads/master
2020-05-21T12:26:41.754863
2017-01-08T10:29:44
2017-01-08T10:29:44
55,733,275
1
0
null
null
null
null
UTF-8
Scilab
false
false
994
tst
Prob-result8.tst
True-Class 1 2 3 4 5 6 7 1 0.8333333333333334 0.0 0.16666666666666666 0.0 0.0 0.0 0.0 1 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.11764705882352941 0.8823529411764706 0.0 0.0 0.0 0.0 0.0 1 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.11764705882352941 0.8823529411764706 0.0 0.0 0.0 0.0 0.0 1 0.8333333333333334 0.16666666666666666 0.0 0.0 0.0 0.0 0.0 2 0.11764705882352941 0.8823529411764706 0.0 0.0 0.0 0.0 0.0 2 0.0 0.0 0.0 0.0 1.0 0.0 0.0 2 0.0 0.5 0.0 0.0 0.0 0.0 0.5 2 0.11764705882352941 0.8823529411764706 0.0 0.0 0.0 0.0 0.0 2 0.0 0.0 1.0 0.0 0.0 0.0 0.0 2 0.0 0.5 0.0 0.0 0.0 0.0 0.5 2 0.11764705882352941 0.8823529411764706 0.0 0.0 0.0 0.0 0.0 3 0.8333333333333334 0.0 0.16666666666666666 0.0 0.0 0.0 0.0 5 0.0 0.875 0.0 0.0 0.0 0.0 0.125 6 0.0 0.0 0.0 0.0 0.0 1.0 0.0 7 0.0 0.0 0.0 0.0 0.045454545454545456 0.0 0.9545454545454546 7 0.0 0.0 0.0 0.0 0.045454545454545456 0.0 0.9545454545454546 7 0.0 0.0 0.0 0.0 0.045454545454545456 0.0 0.9545454545454546
07b29f6717bbed4b0e16b4f565de525de0172148
449d555969bfd7befe906877abab098c6e63a0e8
/32/CH6/EX6.04/6_04.sce
ea366a89ee82e9f534e7ec696ffa19fcb3bf3ee5
[]
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
672
sce
6_04.sce
//pathname=get_absolute_file_path('6.04.sce') //filename=pathname+filesep()+'6.04-data.sci' //exec(filename) //Mass of steam(in kg): m=5 //Pressure(in MPa): p=2 //Temperature of superheated steam(in K): Tss=300+273.15 //Specific heat of super heated steam(in kJ/kg.K): Cps=2.1 //Specific heat of water(in kJ/kg.K): Cpw=4.18 //From steam tables: hfg=1890.7 //Saturation temperature(in K): Tsat=212.42+273.15 //Entropy of unit mass of superheated steam with reference to absolute zero(in kJ/kg.K): s=Cpw*log(Tsat/273.15)+hfg/Tsat+Cps*log(Tss/Tsat) //Entropy of 5 kg of steam(in kJ/K): S=m*s printf("\nRESULT\n") printf("\nEntropy of steam = %f kJ/K",S)
afeea6d1db43f5553295d2c4fc121054f028e1d7
68e53df229b123d7681a4f7fa4db43b4982d5362
/xperm.sce
1357b9c7de11bec6fdf1e27cc1c2352e14edada6
[]
no_license
yeoleparesh/Control-system
06c30e594d51fec7a8ffabc452a7866b38604a23
dee7fbfd3c2c46cc1d4d0a3cb8af45d918da972b
refs/heads/master
2021-01-17T12:38:05.661769
2019-01-03T12:03:53
2019-01-03T12:03:53
59,283,431
0
3
null
null
null
null
UTF-8
Scilab
false
false
188
sce
xperm.sce
//Function xperm // //Example 1 :- // aa=ssrand(2,3,2); ss=xperm(aa,[2 1]) //Example 2:- aa1=ssrand(3,6,8); ss1=xperm(aa1,[2 5 6 1 4 3 7 8])
92f1996aedd23c532ba081bf5c72169016647943
449d555969bfd7befe906877abab098c6e63a0e8
/887/CH17/EX17.3/17_3.sce
c0037f34448cd1eedee893a06298f321479667ce
[]
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
753
sce
17_3.sce
clc //ex17.3 V_L=220; V_s=V_L/sqrt(3); //phase voltage I_s=31.87; P_s=400; //total stator copper losses P_r=150; //total rotoe copper losses P_rot=500; //rotational losses PF=0.75; //power factor P_in=3*V_s*I_s*PF; //input power P_ag=P_in-P_s; //air-gap power P_dev=P_in-P_s-P_r; //developed power P_o=P_dev-P_rot; //output power eff=P_o*100/P_in; //efficiency printf(" All the values in the textbook are approximated hence the values in this code differ from those of Textbook") disp(P_ag,'Power crossing the air gap in watts') disp(P_dev,'developed power in watts') disp(P_o,'output power in watts') disp(eff,'effciency percentage') //this value is given wrong in the textbook
11164cedcc53292a96899b395c817813b52e9774
449d555969bfd7befe906877abab098c6e63a0e8
/1073/CH3/EX3.19/3_19.sce
0689b29813e13b2109f00235d536cbc60a593ed5
[]
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
958
sce
3_19.sce
clc; clear; //Example 3.19 //DATA: rho=984.1 //Density of water [kg/m^3] Cp=4187 //Specific heat in [J/kg.K] mu=485*10^-6 //Viscosity at 331 K[Pa.s] k=0.657 //[W/(m.K)] mu_w=920*10^-6 //Viscosity at 297 K [Pa.s] //Solution D=16 //Diameter in [mm] D=D/1000 //Diameter in [m] u=3 //Velocity in [m/s] rho=984.1 //[kg/m^3] Nre=D*u*rho/mu //Reynolds number Nre=round(Nre) Npr=Cp*mu/k //Prandtl number //Dittus-Boelter equation (i) Nnu=0.023*(Nre^0.8)*(Npr^0.3) //nusselt number h=k*Nnu/D //Heat transfer coefficient [W/m^2.K] printf("\nANSWER-(i) \nBy Dittus-Boelter equation we get h=%f W/sq m.K\n\n\n",h); //sieder-tate equation (ii) Nnu=0.023*(Nre^0.8)*(Npr^(1.0/3.0))*((mu/mu_w)^0.14) //Nusselt number h=k*Nnu/D //Heat transfer coefficient in [W/sq m.K] printf("\nAnswer-(ii)\n-By Sieder-Tate equation we get h=%f W/sq m.K\n",h); printf("\nNOTE:Calculation mistake in book in part 2 ie sieder tate eqn\n")
d8721f53bd3d1de9a0d699aa3199a392e85293ae
f0919c8ea73f22939a890aa4f8327f8200344d2b
/test/parse_param.tst
0fcae6bc62e8ea4a88fafbd43af48d157b042540
[]
no_license
kalex375/OVC
af5e91f90754454b90f339e846c5b9112d38d6c8
f4b47dfc497299c4944b4ff9b93253c279012454
refs/heads/master
2021-05-31T07:55:44.326597
2013-12-02T14:15:52
2013-12-02T14:15:52
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,943
tst
parse_param.tst
PL/SQL Developer Test script 3.0 45 -- 1 -- 1 2 3 4 5 6 7 8 9 0 --1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 -- 1 2 3 -- 1 2 3 4 5 6 --<#>param_name1<@>param_type1<@>param_value1<#><#>param_name2<@>param_type2<@>param_value2<#> select rn, param_str, param_name, param_type, param_value, case when param_type='INT' then to_number(param_value,'FM9999999999999999999') else null end param_value_int, case when param_type='NUM' then to_number(param_value,'FM9999999999999999999D00009999999','nls_numeric_characters = ''. ''') else null end param_value_num, case when param_type='DAT' then to_date(param_value,'DD.MM.YYYY HH24:MI:SS') else null end param_value_dat from ( select rn, param_str, substr(param_str,1,instr(param_str,'<@>',1,1)-1) param_name, substr(param_str,instr (param_str,'<@>',1,1)+3,instr (param_str,'<@>',1,2)-instr (param_str,'<@>',1,1)-3) param_type, substr(param_str,instr (param_str,'<@>',1,2)+3,length(param_str)-instr(param_str,'<@>',1,2)-2) param_value from ( select level rn, substr(:p_params,instr (:p_params,'<#>',1,level*2-1)+3,instr (:p_params,'<#>',1,level*2)-instr (:p_params,'<#>',1,level*2-1)-3) param_str from dual connect by level<=p_ovc_str_utils.SymbolCount(:p_params,'<#>')/2 ) p_str ) p 1 p_params 1 <#>param_name1<@>INT<@>2342<#><#>param_name2<@>NUM<@>2342.33<#><#>p_3<@>DAT<@>20.02.2010<#> 5 0
ce10592c6fc58b6fec84051b082bdf97180e4747
683d2599aa2be1a5f74b928d545b20e7ea656cd1
/microdaq/macros/microdaq_macros/mdaq_led_write.sci
e768a59497cea3c2f93a58e3e6585126e1d1977e
[ "BSD-3-Clause" ]
permissive
pj1974/Scilab
5c7fb67d5cae5ac0cdf78e3dd66b97ba50f9fc95
cd54f1bd8502d6914ad6ff5271ca0e6e3d323935
refs/heads/master
2020-12-25T17:12:56.934984
2015-10-06T17:16:11
2015-10-06T17:16:11
41,862,822
0
0
null
2015-09-03T14:00:56
2015-09-03T14:00:56
null
UTF-8
Scilab
false
false
518
sci
mdaq_led_write.sci
function mdaq_led_write(link_id, led, state) if link_id < 0 then disp("Wrong link ID!") return; end if led > 2 | led < 1 then disp("Wrong LED number!") return; end if state <> 0 then state = 1; end result = call("sci_mlink_led_set",.. link_id, 1, "i",.. led, 2, "i",.. state, 3, "i",.. "out",.. [1, 1], 4, "i"); if result < 0 then mdaq_error(result); end endfunction
98a40bbaa8ba1919f0d7c2fa65335cf367874e60
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.19_14.tst
a5973ab223c9e9b1141fe81a0ec6ad1fcd107593
[]
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
23,868
tst
bow.19_14.tst
19 19:1.0 38:0.14285714285714285 42:0.4 44:0.3333333333333333 56:0.08333333333333333 90:0.5 122:1.0 123:1.0 127:0.25 159:0.5 181:0.5 413:1.0 535:0.25 798:1.0 874:0.25 1199:1.0 2608:0.5 2718:1.0 2816:1.0 19 10:0.125 38:0.2857142857142857 42:0.2 83:0.02857142857142857 86:0.029411764705882353 162:1.0 270:0.14285714285714285 529:0.5 566:1.0 647:1.0 874:0.25 1179:1.0 1516:0.5 3740:1.0 19 10:0.125 13:0.1 16:1.0 32:0.14285714285714285 36:0.03571428571428571 38:0.14285714285714285 44:0.6666666666666666 56:0.08333333333333333 83:0.02857142857142857 86:0.058823529411764705 122:1.0 144:2.0 210:0.16666666666666666 211:0.3333333333333333 227:1.0 229:1.0 1099:1.0 1228:1.0 1487:1.0 1740:0.14285714285714285 1862:1.0 2334:1.0 3515:1.0 4223:1.0 19 6:0.5 10:0.125 13:0.1 32:0.14285714285714285 285:0.2 367:1.0 510:1.0 647:1.0 831:0.3333333333333333 1260:1.0 2130:0.3333333333333333 2353:1.0 3520:1.0 19 7:1.0 8:0.25 13:0.1 44:0.6666666666666666 66:0.3333333333333333 72:1.0 150:1.0 199:0.5 210:0.16666666666666666 248:1.0 472:0.2857142857142857 529:0.5 530:1.0 707:1.0 752:0.3333333333333333 770:0.25 1889:1.0 3652:1.0 3879:1.0 4369:1.0 19 7:1.0 42:0.2 114:0.14285714285714285 126:0.3333333333333333 472:0.14285714285714285 874:0.25 1516:0.5 1887:0.5 2130:0.3333333333333333 2484:1.0 3098:1.0 3281:1.0 19 7:1.0 10:0.125 44:0.3333333333333333 51:0.25 86:0.014705882352941176 236:1.0 277:0.3333333333333333 472:0.14285714285714285 564:1.0 619:0.25 1502:1.0 1673:1.0 1970:1.0 2381:1.0 2806:1.0 3365:1.0 3630:1.0 3878:1.0 3982:1.0 19 44:0.3333333333333333 56:0.08333333333333333 58:0.043478260869565216 86:0.014705882352941176 88:0.5 115:0.5 127:0.25 130:0.5 206:1.0 223:0.5 357:1.0 568:1.0 734:0.030303030303030304 782:1.0 1411:0.5 3390:0.16666666666666666 3928:1.0 3978:1.0 19 7:2.0 8:0.25 10:0.125 15:1.0 49:0.5 119:0.3333333333333333 140:0.14285714285714285 206:1.0 236:1.0 239:1.0 362:1.0 382:1.0 472:0.14285714285714285 480:1.0 521:1.0 529:0.5 566:1.0 707:2.0 792:1.0 808:1.0 1010:1.0 1293:0.6666666666666666 3458:1.0 3827:1.0 4748:1.0 19 42:0.2 56:0.16666666666666666 58:0.08695652173913043 130:0.5 460:0.25 734:0.030303030303030304 1249:1.0 3670:1.0 3768:1.0 19 16:1.0 44:1.6666666666666667 56:0.08333333333333333 66:0.3333333333333333 83:0.02857142857142857 86:0.014705882352941176 119:0.3333333333333333 122:1.0 159:0.25 210:0.16666666666666666 223:0.5 300:1.0 414:0.5 458:1.0 626:1.0 778:1.0 811:1.0 822:0.3333333333333333 831:0.3333333333333333 1032:1.0 1467:0.5 1488:1.0 1890:1.0 2101:1.0 3507:1.0 3531:1.0 4345:1.0 19 34:1.0 44:0.3333333333333333 86:0.014705882352941176 114:0.14285714285714285 122:1.0 130:0.5 206:1.0 210:0.16666666666666666 223:0.5 225:1.0 270:0.14285714285714285 282:0.6666666666666666 1228:1.0 4264:1.0 19 13:0.1 16:1.0 33:0.5 44:1.0 56:0.08333333333333333 58:0.043478260869565216 86:0.014705882352941176 104:0.125 144:1.0 181:0.5 210:0.3333333333333333 229:1.0 231:1.0 277:0.3333333333333333 295:0.5 352:1.0 379:1.0 523:1.0 673:1.0 792:1.0 943:1.0 1119:1.0 1446:1.0 2108:1.0 4341:1.0 19 6:0.5 8:0.25 13:0.1 20:1.0 36:0.07142857142857142 44:0.6666666666666666 51:0.25 56:0.08333333333333333 84:0.5 86:0.029411764705882353 460:0.25 472:0.14285714285714285 525:1.0 529:0.5 532:1.0 613:1.0 647:1.0 792:1.0 943:1.0 1053:1.0 1154:1.0 1166:1.0 1622:1.0 2082:1.0 2311:1.0 3167:1.0 4578:1.0 19 1:1.0 7:1.0 8:0.25 13:0.1 20:1.0 49:0.5 51:0.25 56:0.08333333333333333 83:0.02857142857142857 86:0.014705882352941176 104:0.125 105:1.0 147:0.16666666666666666 210:0.3333333333333333 388:1.0 399:0.2 458:1.0 472:0.14285714285714285 546:1.0 710:0.5 873:1.0 1097:1.0 1724:1.0 2653:1.0 2899:1.0 3390:0.16666666666666666 3471:1.0 3520:1.0 3665:1.0 4384:1.0 19 7:1.0 13:0.1 26:0.5 33:0.5 38:0.14285714285714285 56:0.08333333333333333 66:0.3333333333333333 84:1.0 86:0.04411764705882353 90:0.5 96:0.1111111111111111 111:2.0 140:0.14285714285714285 190:1.0 231:1.0 248:1.0 408:1.0 414:0.5 430:1.0 472:0.2857142857142857 647:1.0 724:1.0 908:1.0 1299:1.0 1989:1.0 2608:0.5 3349:1.0 3390:0.16666666666666666 3928:1.0 3982:1.0 19 10:0.125 13:0.1 16:1.0 42:0.2 49:0.5 51:0.25 56:0.08333333333333333 58:0.043478260869565216 66:0.6666666666666666 95:0.5 140:0.14285714285714285 157:0.6666666666666666 255:1.0 265:0.5 567:1.0 568:1.0 647:1.0 704:0.5 734:0.030303030303030304 770:0.25 863:1.0 2936:0.2 3742:1.0 19 7:1.0 10:0.125 13:0.4 16:2.0 20:1.0 38:0.14285714285714285 39:0.5 44:0.6666666666666666 56:0.08333333333333333 86:0.04411764705882353 108:1.0 130:0.5 148:1.0 210:0.16666666666666666 248:1.0 265:0.5 313:1.0 362:1.0 429:2.0 455:1.0 458:1.0 472:0.14285714285714285 528:0.5 529:0.5 538:1.0 667:1.0 857:1.0 1099:1.0 1488:1.0 2460:1.0 3833:1.0 19 8:0.25 10:0.125 20:1.0 34:1.0 42:0.4 56:0.25 58:0.043478260869565216 61:1.0 86:0.014705882352941176 130:0.5 160:0.5 210:0.16666666666666666 216:1.0 231:1.0 265:0.5 408:1.0 412:0.5 413:1.0 472:0.2857142857142857 512:2.0 529:0.5 530:1.0 613:1.0 647:1.0 795:1.0 1552:1.0 2261:1.0 2425:1.0 2540:1.0 3054:1.0 4239:1.0 4559:1.0 19 6:0.5 15:1.0 19:1.0 42:0.2 49:0.5 56:0.08333333333333333 78:1.0 140:0.2857142857142857 153:1.0 388:1.0 430:1.0 435:1.0 614:1.0 808:1.0 1334:1.0 1502:1.0 1778:1.0 2183:1.0 2405:1.0 3849:1.0 4182:1.0 4492:1.0 19 6:0.5 7:1.0 10:0.125 56:0.08333333333333333 86:0.014705882352941176 225:1.0 231:1.0 270:0.14285714285714285 716:1.0 1740:0.14285714285714285 2334:1.0 3139:1.0 19 7:2.0 13:0.1 16:2.0 20:1.0 36:0.03571428571428571 38:0.14285714285714285 44:0.3333333333333333 51:0.5 58:0.043478260869565216 86:0.029411764705882353 114:0.14285714285714285 127:0.25 147:0.16666666666666666 155:0.5 157:0.3333333333333333 206:1.0 270:0.14285714285714285 529:0.5 566:1.0 619:0.25 647:1.0 873:1.0 1160:0.5 1488:2.0 1552:1.0 2098:0.5 3795:1.0 19 13:0.2 16:1.0 32:0.14285714285714285 42:0.2 56:0.25 83:0.02857142857142857 86:0.058823529411764705 157:0.3333333333333333 229:2.0 429:1.0 461:1.0 472:0.14285714285714285 530:1.0 545:1.0 673:1.0 851:1.0 1293:0.3333333333333333 1652:1.0 3335:1.0 3857:1.0 4574:1.0 19 33:0.5 38:0.14285714285714285 44:0.3333333333333333 49:0.5 51:0.25 56:0.16666666666666666 86:0.029411764705882353 90:0.5 122:1.0 159:0.25 647:1.0 882:1.0 1078:1.0 1293:0.3333333333333333 2336:0.5 3857:1.0 3978:1.0 4946:1.0 19 32:0.14285714285714285 44:0.3333333333333333 51:0.25 83:0.02857142857142857 86:0.029411764705882353 169:0.25 210:0.3333333333333333 530:1.0 536:1.0 563:1.0 567:1.0 613:1.0 632:1.0 734:0.030303030303030304 887:0.5 1078:1.0 2250:1.0 3517:1.0 19 26:0.5 32:0.14285714285714285 49:0.5 83:0.02857142857142857 86:0.014705882352941176 140:0.14285714285714285 399:0.2 430:1.0 770:0.25 808:1.0 3390:0.16666666666666666 4558:1.0 19 7:1.0 10:0.125 51:0.25 58:0.043478260869565216 88:0.5 265:0.5 472:0.14285714285714285 3151:1.0 3753:0.5 4461:1.0 19 16:1.0 32:0.14285714285714285 44:0.3333333333333333 56:0.16666666666666666 66:0.3333333333333333 83:0.02857142857142857 86:0.014705882352941176 152:0.1111111111111111 236:1.0 240:0.25 441:1.0 472:0.14285714285714285 647:1.0 703:1.0 710:0.5 734:0.030303030303030304 880:1.0 1100:1.0 1154:0.5 3953:1.0 19 10:0.125 56:0.08333333333333333 86:0.029411764705882353 152:0.1111111111111111 521:1.0 1154:0.5 1464:1.0 2936:0.2 3857:1.0 19 6:1.0 32:0.14285714285714285 56:0.08333333333333333 144:1.0 153:1.0 327:1.0 328:0.16666666666666666 1046:1.0 2243:1.0 2261:1.0 2927:1.0 3147:1.0 19 13:0.1 14:1.0 16:1.0 20:2.0 38:0.14285714285714285 51:0.5 159:0.5 160:0.5 162:1.0 223:0.5 275:1.0 299:0.5 300:1.0 313:1.0 314:1.0 472:0.14285714285714285 514:1.0 572:1.0 986:1.0 1228:1.0 1499:1.0 1552:2.0 19 7:1.0 13:0.1 56:0.08333333333333333 58:0.043478260869565216 86:0.014705882352941176 88:0.5 152:0.1111111111111111 160:0.5 225:1.0 265:0.5 276:1.0 300:1.0 365:1.0 472:0.2857142857142857 617:1.0 619:0.25 801:1.0 1145:1.0 1277:1.0 1802:1.0 2118:1.0 2295:1.0 3161:1.0 3259:1.0 3948:1.0 19 6:0.5 13:0.2 16:1.0 38:0.14285714285714285 44:0.3333333333333333 83:0.02857142857142857 86:0.04411764705882353 117:1.0 144:1.0 147:0.16666666666666666 181:0.5 206:1.0 210:0.3333333333333333 265:0.5 270:0.14285714285714285 408:1.0 529:0.5 538:1.0 590:1.0 655:1.0 704:0.5 887:0.5 1154:0.5 1190:1.0 1457:1.0 1950:1.0 4147:1.0 4153:0.5 19 4:0.1111111111111111 13:0.3 16:3.0 66:0.3333333333333333 88:0.5 157:0.3333333333333333 204:0.07142857142857142 227:1.0 229:1.0 442:1.0 519:1.0 589:1.0 1011:1.0 1228:1.0 1821:1.0 3147:1.0 4369:1.0 19 16:1.0 44:0.6666666666666666 71:0.16666666666666666 83:0.02857142857142857 85:1.0 86:0.029411764705882353 146:1.0 210:0.3333333333333333 229:1.0 430:1.0 529:0.5 564:1.0 734:0.030303030303030304 822:0.3333333333333333 1132:1.0 1293:0.6666666666666666 1367:0.3333333333333333 2112:1.0 3517:1.0 3830:1.0 4182:1.0 4341:1.0 19 13:0.2 38:0.14285714285714285 42:0.2 51:0.25 86:0.014705882352941176 144:1.0 146:1.0 150:1.0 190:1.0 277:0.3333333333333333 458:1.0 530:1.0 672:1.0 795:1.0 1888:0.3333333333333333 3440:1.0 3648:1.0 3995:1.0 19 1:1.0 6:0.5 16:1.0 44:0.3333333333333333 51:0.5 66:0.3333333333333333 83:0.02857142857142857 84:0.5 86:0.014705882352941176 94:0.5 122:1.0 157:0.3333333333333333 181:0.5 210:0.16666666666666666 223:0.5 472:0.14285714285714285 607:1.0 647:1.0 811:1.0 1190:1.0 1778:1.0 1843:1.0 2213:1.0 2604:1.0 2843:1.0 2915:1.0 4239:1.0 4365:1.0 4654:1.0 19 8:0.25 13:0.1 15:1.0 32:0.14285714285714285 38:0.14285714285714285 42:0.4 56:0.08333333333333333 58:0.043478260869565216 66:0.3333333333333333 85:1.0 86:0.029411764705882353 96:0.1111111111111111 210:0.16666666666666666 413:1.0 461:1.0 472:0.14285714285714285 1295:1.0 1516:0.5 1740:0.14285714285714285 1897:0.2 4390:1.0 19 6:1.0 7:2.0 10:0.25 16:1.0 20:1.0 26:0.5 36:0.03571428571428571 42:0.2 43:0.5 44:0.3333333333333333 50:1.0 56:0.08333333333333333 58:0.043478260869565216 83:0.02857142857142857 84:0.5 86:0.029411764705882353 114:0.14285714285714285 130:0.5 147:0.16666666666666666 155:0.5 157:0.6666666666666666 210:0.3333333333333333 227:1.0 265:0.5 270:0.2857142857142857 394:1.0 528:0.5 529:1.0 530:1.0 567:2.0 739:0.5 1085:1.0 1254:1.0 1293:0.3333333333333333 1552:1.0 1799:1.0 1847:2.0 2018:1.0 2295:1.0 3188:1.0 3225:0.5 3342:1.0 3365:1.0 4240:1.0 19 8:0.25 13:0.2 16:1.0 39:0.5 42:0.2 44:1.0 56:0.25 66:0.6666666666666666 74:0.5 84:0.5 86:0.029411764705882353 187:1.0 337:1.0 441:1.0 472:0.14285714285714285 647:1.0 723:0.3333333333333333 734:0.030303030303030304 1046:1.0 1293:0.3333333333333333 2277:1.0 2608:0.5 2940:1.0 3908:1.0 19 10:0.125 18:0.4 51:0.25 86:0.029411764705882353 127:0.25 472:0.14285714285714285 475:1.0 607:1.0 647:1.0 1010:1.0 1023:1.0 1847:1.0 3875:1.0 4141:1.0 19 4:0.1111111111111111 7:1.0 13:0.1 32:0.14285714285714285 42:0.2 56:0.16666666666666666 96:0.1111111111111111 114:0.14285714285714285 127:0.25 231:1.0 314:1.0 570:0.07692307692307693 1560:1.0 2394:1.0 3431:1.0 3589:1.0 4369:1.0 19 12:1.0 51:0.5 56:0.08333333333333333 86:0.014705882352941176 121:0.5 206:1.0 277:0.3333333333333333 357:1.0 381:1.0 435:1.0 569:1.0 660:0.5 872:1.0 1661:1.0 3390:0.16666666666666666 19 7:1.0 42:0.2 44:0.3333333333333333 56:0.25 83:0.08571428571428572 86:0.029411764705882353 90:0.5 144:2.0 190:1.0 224:1.0 229:1.0 251:0.3333333333333333 295:1.0 360:1.0 363:0.3333333333333333 408:1.0 412:0.5 520:1.0 673:1.0 887:0.5 1286:1.0 1979:1.0 3430:1.0 19 42:0.2 54:0.125 86:0.014705882352941176 90:0.5 147:0.16666666666666666 159:0.25 525:1.0 703:1.0 808:1.0 3783:0.5 19 1:1.0 10:0.125 20:1.0 56:0.08333333333333333 58:0.043478260869565216 83:0.02857142857142857 86:0.029411764705882353 111:1.0 157:0.3333333333333333 210:0.16666666666666666 270:0.14285714285714285 460:0.25 530:1.0 564:1.0 770:0.25 1190:1.0 1249:1.0 2168:1.0 3225:0.5 3433:1.0 3465:1.0 4107:1.0 19 56:0.08333333333333333 83:0.02857142857142857 114:0.14285714285714285 206:1.0 239:1.0 295:0.5 430:1.0 435:1.0 529:0.5 1010:1.0 2122:1.0 3365:1.0 19 6:0.5 7:1.0 8:0.25 13:0.1 18:0.2 38:0.14285714285714285 51:0.25 56:0.08333333333333333 58:0.043478260869565216 83:0.02857142857142857 86:0.029411764705882353 169:0.25 199:0.5 227:1.0 270:0.14285714285714285 784:1.0 792:1.0 1571:1.0 3216:1.0 4150:1.0 4593:1.0 19 10:0.125 13:0.3 16:3.0 38:0.14285714285714285 42:0.2 44:0.3333333333333333 56:0.08333333333333333 61:1.0 83:0.05714285714285714 86:0.014705882352941176 153:1.0 159:0.25 211:0.3333333333333333 225:1.0 231:2.0 303:1.0 613:1.0 636:1.0 640:1.0 647:1.0 702:1.0 739:0.5 3279:1.0 19 7:1.0 8:0.25 10:0.125 18:0.2 25:1.0 36:0.03571428571428571 38:0.14285714285714285 44:0.3333333333333333 51:0.25 60:0.2 86:0.029411764705882353 211:0.3333333333333333 302:0.25 472:0.14285714285714285 613:1.0 614:1.0 647:1.0 757:1.0 811:1.0 1145:1.0 1693:1.0 3919:1.0 4492:1.0 19 13:0.1 32:0.14285714285714285 38:0.14285714285714285 51:0.25 56:0.08333333333333333 84:0.5 86:0.014705882352941176 90:0.5 152:0.2222222222222222 277:0.3333333333333333 381:1.0 413:1.0 460:0.25 520:1.0 525:1.0 1041:1.0 1133:1.0 1191:1.0 2608:1.0 3491:1.0 3652:1.0 19 1:1.0 7:1.0 13:0.1 44:0.3333333333333333 56:0.08333333333333333 83:0.02857142857142857 1887:0.5 1992:1.0 2653:1.0 3157:1.0 3734:1.0 19 1:1.0 4:0.1111111111111111 13:0.1 33:0.5 56:0.25 66:0.3333333333333333 83:0.02857142857142857 86:0.04411764705882353 95:0.5 127:0.25 174:1.0 223:0.5 376:1.0 472:0.2857142857142857 713:0.5 1228:1.0 1384:1.0 1521:1.0 2419:1.0 3133:1.0 4518:1.0 19 6:0.5 13:0.2 16:2.0 56:0.08333333333333333 58:0.043478260869565216 72:1.0 140:0.14285714285714285 619:0.25 734:0.030303030303030304 3641:1.0 4371:1.0 4518:1.0 19 13:0.2 58:0.043478260869565216 86:0.029411764705882353 130:0.5 157:0.3333333333333333 217:1.0 265:0.5 430:1.0 455:1.0 590:1.0 1616:1.0 1888:0.3333333333333333 2381:1.0 3435:1.0 19 7:1.0 13:0.1 32:0.14285714285714285 44:0.3333333333333333 78:1.0 126:0.3333333333333333 152:0.1111111111111111 217:1.0 521:1.0 529:0.5 619:0.25 703:1.0 1891:1.0 1987:1.0 2261:1.0 2866:1.0 2921:1.0 3365:1.0 3450:1.0 3641:1.0 19 83:0.02857142857142857 86:0.014705882352941176 160:0.5 285:0.2 770:0.25 1228:1.0 1610:1.0 2130:0.3333333333333333 2866:1.0 19 3:1.0 13:0.1 15:1.0 16:1.0 44:0.3333333333333333 58:0.043478260869565216 157:0.3333333333333333 217:1.0 265:0.5 295:0.5 357:1.0 460:0.25 461:1.0 475:1.0 500:1.0 528:0.5 530:1.0 532:1.0 589:1.0 619:0.25 822:0.3333333333333333 831:0.3333333333333333 943:1.0 997:1.0 1133:1.0 1164:1.0 1401:1.0 1446:1.0 3312:1.0 19 4:0.1111111111111111 16:1.0 44:0.3333333333333333 49:0.5 51:0.25 56:0.08333333333333333 61:1.0 147:0.16666666666666666 160:0.5 229:1.0 265:0.5 626:1.0 751:0.5 848:1.0 2344:1.0 2656:1.0 4137:1.0 19 32:0.14285714285714285 51:0.25 56:0.16666666666666666 58:0.043478260869565216 72:1.0 74:0.5 150:1.0 240:0.25 504:1.0 660:0.5 734:0.030303030303030304 2051:1.0 2266:1.0 2453:1.0 19 44:1.0 83:0.02857142857142857 86:0.014705882352941176 157:0.6666666666666666 224:1.0 270:0.14285714285714285 377:1.0 430:1.0 530:1.0 567:2.0 1301:1.0 2024:1.0 2223:1.0 3475:0.3333333333333333 19 39:0.5 56:0.08333333333333333 58:0.043478260869565216 86:0.04411764705882353 111:1.0 147:0.16666666666666666 227:1.0 236:1.0 248:1.0 475:1.0 734:0.030303030303030304 822:0.3333333333333333 1190:1.0 2522:1.0 3193:1.0 4030:1.0 4283:1.0 4563:1.0 19 8:0.25 10:0.25 13:0.1 16:1.0 38:0.14285714285714285 44:0.3333333333333333 56:0.16666666666666666 66:0.6666666666666666 72:1.0 95:0.5 144:1.0 259:1.0 265:0.5 372:1.0 423:0.5 472:0.14285714285714285 734:0.030303030303030304 822:0.3333333333333333 823:1.0 1100:1.0 1154:0.5 3046:1.0 3458:1.0 4715:1.0 19 8:0.25 10:0.125 13:0.1 33:0.5 38:0.2857142857142857 56:0.08333333333333333 86:0.014705882352941176 88:0.5 127:0.25 144:1.0 232:1.0 423:0.5 567:2.0 716:1.0 936:1.0 1010:1.0 1102:1.0 1552:1.0 1644:0.5 1847:1.0 2130:0.3333333333333333 2557:0.25 3237:1.0 3471:1.0 4549:1.0 19 6:0.5 7:1.0 10:0.25 19:1.0 38:0.2857142857142857 42:0.2 51:0.25 66:0.3333333333333333 83:0.02857142857142857 86:0.014705882352941176 96:0.1111111111111111 101:0.5 120:1.0 206:1.0 229:1.0 399:0.2 480:1.0 569:1.0 831:0.3333333333333333 1293:0.6666666666666666 1487:1.0 2040:1.0 2266:1.0 2334:1.0 3390:0.16666666666666666 3863:1.0 3867:1.0 3887:1.0 4785:1.0 19 7:1.0 10:0.125 13:0.1 27:0.5 28:0.3333333333333333 32:0.14285714285714285 38:0.2857142857142857 44:0.6666666666666666 56:0.16666666666666666 66:0.3333333333333333 83:0.02857142857142857 84:0.5 86:0.014705882352941176 126:0.3333333333333333 225:1.0 229:1.0 327:1.0 363:0.3333333333333333 429:1.0 441:1.0 472:0.14285714285714285 734:0.030303030303030304 1488:1.0 1582:1.0 2266:1.0 19 8:0.5 44:0.3333333333333333 51:0.25 122:1.0 165:2.0 223:0.5 224:1.0 264:1.0 619:0.25 880:1.0 1032:1.0 1228:1.0 1600:1.0 19 10:0.125 19:1.0 25:1.0 44:1.3333333333333333 51:0.25 56:0.08333333333333333 66:0.3333333333333333 71:0.16666666666666666 72:1.0 84:0.5 86:0.04411764705882353 138:1.0 157:0.3333333333333333 165:1.0 180:1.0 229:1.0 264:1.0 414:0.5 627:1.0 647:2.0 664:1.0 793:1.0 944:1.0 1140:1.0 1190:1.0 1682:1.0 1744:1.0 1887:0.5 1890:1.0 1965:0.5 2987:1.0 3451:1.0 3665:1.0 19 7:1.0 13:0.1 38:0.14285714285714285 114:0.14285714285714285 155:0.5 570:0.07692307692307693 770:0.25 1303:1.0 3857:1.0 4913:1.0 19 6:0.5 8:0.25 13:0.2 33:0.5 44:0.3333333333333333 86:0.014705882352941176 211:0.3333333333333333 223:1.0 302:0.25 458:1.0 636:1.0 1228:1.0 1888:0.3333333333333333 2921:1.0 3399:1.0 3425:1.0 19 10:0.125 13:0.4 16:2.0 36:0.03571428571428571 38:0.14285714285714285 44:0.3333333333333333 86:0.029411764705882353 108:1.0 171:0.5 282:0.3333333333333333 367:1.0 410:1.0 472:0.14285714285714285 548:1.0 647:1.0 734:0.030303030303030304 872:1.0 1186:1.0 1277:1.0 1970:1.0 2123:1.0 2192:1.0 3572:1.0 4291:1.0 19 7:1.0 25:1.0 44:0.3333333333333333 58:0.08695652173913043 83:0.02857142857142857 86:0.029411764705882353 88:0.5 103:1.0 140:0.14285714285714285 157:0.3333333333333333 159:0.25 162:1.0 302:0.25 410:1.0 472:0.14285714285714285 1041:1.0 19 15:1.0 39:0.5 56:0.16666666666666666 58:0.08695652173913043 72:2.0 83:0.02857142857142857 86:0.014705882352941176 90:0.5 159:0.25 162:1.0 225:1.0 229:1.0 231:1.0 530:1.0 734:0.06060606060606061 770:0.25 2261:1.0 3614:1.0 3625:0.3333333333333333 3982:1.0 19 13:0.1 42:0.2 56:0.08333333333333333 66:0.3333333333333333 83:0.02857142857142857 86:0.029411764705882353 90:0.5 169:0.25 190:1.0 217:1.0 295:0.5 529:0.5 530:2.0 1228:1.0 3210:1.0 3729:0.5 19 10:0.125 25:1.0 32:0.14285714285714285 38:0.14285714285714285 44:0.3333333333333333 86:0.029411764705882353 123:1.0 530:1.0 704:1.0 908:1.0 1131:1.0 1166:1.0 1487:1.0 1918:1.0 2838:1.0 3886:1.0 19 10:0.25 25:1.0 33:0.5 49:0.5 58:0.043478260869565216 86:0.029411764705882353 152:0.1111111111111111 210:0.3333333333333333 236:1.0 270:0.14285714285714285 328:0.16666666666666666 339:0.3333333333333333 472:0.2857142857142857 529:0.5 647:1.0 822:0.3333333333333333 1907:1.0 1915:1.0 2936:0.2 19 10:0.125 13:0.1 38:0.14285714285714285 44:0.6666666666666666 50:1.0 66:0.3333333333333333 71:0.16666666666666666 86:0.014705882352941176 144:1.0 169:0.25 210:0.3333333333333333 217:1.0 231:1.0 236:1.0 270:0.14285714285714285 313:1.0 529:0.5 727:1.0 1154:0.5 1887:0.5 1961:1.0 2749:1.0 3372:1.0 3895:1.0 19 8:0.25 38:0.14285714285714285 42:0.2 51:0.5 56:0.08333333333333333 58:0.043478260869565216 86:0.014705882352941176 144:2.0 210:0.16666666666666666 285:0.2 443:0.5 929:1.0 964:1.0 1244:1.0 1740:0.14285714285714285 3431:1.0 3567:1.0 19 13:0.1 56:0.16666666666666666 66:0.3333333333333333 86:0.014705882352941176 130:0.5 152:0.1111111111111111 159:0.25 232:1.0 363:0.3333333333333333 442:1.0 688:1.0 929:1.0 1228:1.0 1277:1.0 1345:1.0 19 7:1.0 13:0.1 38:0.14285714285714285 58:0.043478260869565216 66:0.3333333333333333 72:1.0 206:1.0 210:0.16666666666666666 231:1.0 280:0.1111111111111111 443:0.5 1367:0.3333333333333333 1673:1.0 2394:1.0 2837:1.0 3342:1.0 3435:1.0 19 10:0.125 56:0.08333333333333333 61:1.0 86:0.014705882352941176 147:0.16666666666666666 190:1.0 667:1.0 1740:0.14285714285714285 3354:1.0 19 8:0.25 10:0.125 44:0.3333333333333333 160:0.5 210:0.16666666666666666 225:1.0 274:1.0 285:0.2 613:1.0 636:1.0 2130:0.3333333333333333 3143:1.0 4209:1.0 19 8:0.5 10:0.125 13:0.1 15:1.0 16:2.0 36:0.03571428571428571 83:0.02857142857142857 86:0.058823529411764705 95:0.5 127:0.25 150:1.0 157:0.3333333333333333 180:1.0 181:0.5 190:1.0 216:1.0 277:0.3333333333333333 363:0.3333333333333333 377:1.0 413:1.0 472:0.2857142857142857 514:1.0 667:1.0 1107:1.0 1740:0.14285714285714285 2252:1.0 2281:1.0 2654:1.0 3208:1.0 3279:2.0 3827:1.0 4044:1.0 19 7:1.0 10:0.125 36:0.03571428571428571 44:0.3333333333333333 56:0.25 206:1.0 210:0.16666666666666666 270:0.14285714285714285 376:1.0 570:0.07692307692307693 613:1.0 734:0.030303030303030304 753:1.0 1563:1.0 1884:1.0 3308:1.0 3390:0.16666666666666666 4543:1.0 19 7:1.0 34:1.0 58:0.043478260869565216 72:2.0 206:1.0 359:1.0 441:1.0 472:0.14285714285714285 1740:0.14285714285714285 3042:1.0 3390:0.16666666666666666 4590:1.0 19 7:1.0 58:0.043478260869565216 72:2.0 435:1.0 441:1.0 472:0.14285714285714285 3042:1.0 4084:1.0 4590:1.0 19 6:0.5 50:1.0 86:0.014705882352941176 123:1.0 210:0.16666666666666666 226:1.0 458:1.0 1964:1.0 2108:1.0 3625:0.3333333333333333 19 7:1.0 8:0.5 13:0.1 15:1.0 16:1.0 38:0.14285714285714285 42:0.2 51:0.25 56:0.08333333333333333 58:0.08695652173913043 83:0.02857142857142857 86:0.014705882352941176 90:0.5 115:0.5 157:0.3333333333333333 180:1.0 217:1.0 413:1.0 589:1.0 874:0.25 2554:1.0 3768:1.0 4893:1.0 19 8:0.25 10:0.125 43:0.5 66:0.3333333333333333 88:0.5 144:1.0 225:1.0 419:1.0 430:1.0 808:1.0 1474:1.0 4576:1.0 19 32:0.14285714285714285 147:0.16666666666666666 1088:2.0 19 32:0.14285714285714285 56:0.08333333333333333 57:0.5 58:0.043478260869565216 88:0.5 130:0.5 159:0.25 530:1.0 589:1.0 874:0.25 1228:1.0 19 44:0.3333333333333333 71:0.16666666666666666 74:0.5 86:0.014705882352941176 130:0.5 159:0.25 270:0.14285714285714285 530:1.0 566:1.0 647:1.0 734:0.030303030303030304 1190:1.0 1258:1.0 1293:0.3333333333333333 2662:1.0 3517:1.0 19 6:0.5 7:1.0 10:0.125 13:0.1 32:0.2857142857142857 44:0.6666666666666666 58:0.043478260869565216 66:0.3333333333333333 74:0.5 86:0.029411764705882353 96:0.1111111111111111 187:1.0 206:1.0 210:0.16666666666666666 239:1.0 314:1.0 357:1.0 523:1.0 529:0.5 530:1.0 532:1.0 619:0.25 770:0.25 874:0.25 1693:1.0 1890:1.0 3338:1.0 3349:1.0 3390:0.16666666666666666 3641:1.0 19 10:0.125 32:0.2857142857142857 83:0.02857142857142857 84:0.5 86:0.014705882352941176 265:0.5 472:0.14285714285714285 642:1.0 937:0.5 938:1.0 953:1.0 1520:1.0 1799:1.0 2266:1.0 2620:1.0 3240:1.0 4509:1.0 19 13:0.1 18:0.2 58:0.08695652173913043 84:1.0 86:0.014705882352941176 114:0.14285714285714285 117:2.0 119:0.3333333333333333 162:1.0 181:0.5 231:1.0 269:1.0 328:0.16666666666666666 408:1.0 521:1.0 619:0.25 647:1.0 792:2.0 1145:1.0 1154:0.5 1868:1.0 1908:1.0 2157:1.0 2927:1.0 3121:1.0 3222:1.0 3696:1.0 3722:1.0 3762:1.0 19 7:1.0 32:0.14285714285714285 44:0.3333333333333333 56:0.08333333333333333 84:1.0 159:0.25 210:0.16666666666666666 225:1.0 270:0.14285714285714285 282:0.3333333333333333 367:1.0 414:0.5 472:0.14285714285714285 567:1.0 647:1.0 1560:1.0 2244:0.5 3376:1.0 3908:1.0 19 20:1.0 26:0.5 408:1.0 472:0.14285714285714285 647:1.0 2044:2.0 2656:1.0 19 6:0.5 7:2.0 8:0.25 16:1.0 20:1.0 36:0.03571428571428571 51:0.5 56:0.08333333333333333 58:0.043478260869565216 72:1.0 74:0.5 84:0.5 86:0.029411764705882353 95:0.5 147:0.16666666666666666 199:0.5 229:1.0 270:0.2857142857142857 441:1.0 524:1.0 563:1.0 564:1.0 567:1.0 619:0.25 710:0.5 945:1.0 1334:1.0 1367:0.3333333333333333 1757:0.5 2010:1.0 2102:1.0 2604:1.0 3647:1.0 3696:1.0 4543:1.0 19 6:0.5 157:0.3333333333333333 182:1.0 211:0.3333333333333333 302:0.25 1004:0.5 3376:1.0 19 4:0.1111111111111111 20:1.0 34:1.0 42:0.2 49:0.5 56:0.16666666666666666 58:0.043478260869565216 66:0.3333333333333333 84:0.5 86:0.014705882352941176 90:0.5 146:1.0 157:1.0 159:0.25 178:1.0 210:0.16666666666666666 328:0.16666666666666666 363:0.3333333333333333 365:1.0 430:1.0 529:0.5 564:1.0 589:1.0 808:1.0 1740:0.14285714285714285 1778:1.0 1867:1.0 3197:1.0 3312:1.0 3708:1.0 3998:1.0
d4453830b99a29e44c53bf6219a7647fc0adc4f6
449d555969bfd7befe906877abab098c6e63a0e8
/1309/CH7/EX7.3/ch7_3.sce
a6a759a5b622e2ce0f04095941f07944549ae002
[]
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,360
sce
ch7_3.sce
clc; clear; printf("\t\t\tChapter7_example3\n\n\n"); // Determination of the average convection coefficient and the total drag force exerted on the plate. // properties of air at (300 + 400)/2 = 350 K from appendix table D1 rou= 0.998; // density in kg/cu.m cp= 1009; // specific heat in J/(kg*K) v= 20.76e-6; // viscosity in sq.m/s Pr = 0.697; // Prandtl Number k= 0.03003; // thermal conductivity in W/(m.K) a = 0.2983e-4; // diffusivity in sq.m/s L=1; // Length of plate in m V=5; // velocity of air in m/s b=0.5; // width in m Re=V*L/v; // Reynolds number at plate end printf("\nThe Reynolds number is %.2e",Re); // Since the flow is laminar at plate end, The average convection coefficient is calculated with Equation Nu=h*L/k= 0.664 Re^(1/2)Pr^(1/3) h=k*0.664*Re^(1/2)*Pr^(1/3)/L; // The average convection coefficient in W/(sq.m.K) printf("\nThe average convection coefficient is %.2f W/(sq.m.K)",h); Df=0.664*V*rou*v*b*(Re)^0.5; // drag force in N printf("\nThe drag force is %.2e N",Df); hx=(1/2)*h; // local convective coefficient printf("\nThe local convective coefficient is %.2f W/(sq.m.K)",hx); delta=5*L/(Re)^0.5; // The boundary-layer thickness at plate end printf("\nThe boundary-layer thickness at plate end is %.2f cm",delta*100); delta_t=delta/(Pr)^(1/3); printf("\nThe thermal-boundary-layer thickness is %.2f cm",delta_t*100);
29cced8f207dd6a8bf96b5d26456e5bf517a0f49
449d555969bfd7befe906877abab098c6e63a0e8
/1304/CH1/EX1.8/1_8.sce
87c27f42cbe1d2e677b23211fa7573ca5d7c8b0b
[]
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,281
sce
1_8.sce
clear; clc; printf("\t\t\tExample Number 1.8\n\n\n"); // calculating minimum heat coefficient at the outer surface to maintain outer surface temperature at 100 degree celcius // solution T1 =200 ;//[degree celsius] temperature of the inner surface of the insulation layer Tf =20 ;//[degree celsius] temperature of the air k=1.5; //[W/m degree celcius] heat conductivity of insulator L=0.05;//[m] insulator thickness // Let T2 be the temperature of outer layer of the insulator // qconv = heat transfer rate from outer layer to the air //qcond = heat transfer rate across the insulator // if qconv > qcond, then T2 will decrease // if qcond > qconv, then T2 will increase // for T2 to not go above 100 degree celcius, qcond should be less than equal to qconv , and equality will be when T2 is equal to 100 //thus qcond = qconv at T2=100 // qcond = k*(T1-T2)/L = h*(T2-Tf) = qconv //thus T2 =100 ;//[degree celsius]maximum permissible temperature of the outer surface h = k*(T1-T2)/(L*(T2-Tf));// [W/m^2 degree celcius] convection heat trasnfer coefficient between insulator's outer surface and air printf("The minimum convection heat transfer coefficient required to maintain outer surface tempereature below 100 is %f W/m^2 degreee celcius",h);
23869629e99c35904b40c875b86009ffdd831628
449d555969bfd7befe906877abab098c6e63a0e8
/506/CH7/EX7.1/Example7_1.sce
1d9f092db1a7c0e78731bafba4f9da8872aa3619
[]
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
717
sce
Example7_1.sce
clear; clc; //caption:Diffusion of a pn junction disp('At distance equal to x=xi at which N = concentration n of doped silicon wafers , the net impurity density is zero. Thus xi is the distance at which junction is formed'); //Given Data q = 1.6*(10^-19);//Charge of electron yn=1300;//mobility of silicon p = 0.5;//resistivity in ohm=cm y=2.2; t=2*3600;//in sec. xi = 2.7*(10^-4);// Junction Depth in cm. n = 1/(p*yn*q);//Concentration of doped silicon wafer disp('cm^-3',n,'The concentration n ='); disp('The junction is formed when N = n'); //y = xi/(2*(D*t)^0.5) D=((xi)^2/((2*y)^2*t));//Diffusion Constant disp('cm^2/sec',D,'The value of Diffusion Constant for Boron = '); //end
5a9a2ed2f45f5a5c2226ad3e606a9f1913593ead
449d555969bfd7befe906877abab098c6e63a0e8
/2660/CH15/EX15.10/Ex15_10.sce
e4fa9f240fc7e06ec0c85ea7736466dd57fdbb19
[]
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
665
sce
Ex15_10.sce
clc l = 300 // length in mm w = 100 // width in mm f = 0.25 // feed in mm/tooth d = 3.2 // depth of cut in mm D = 50 // cutter diameter in mm n = 20 // number of cutter teeth N = 100 // cutter speed in rev./min. tf = f*n*N // table feed in mm/min. mrr = w*d*tf // metal removal rate in mm^3/min. mrr = mrr/60 // mm^3/s p = 6*mrr // cutting power from table 14.2 in watts omega = 2*%pi*N/60 // rpm T = p/omega // torque in N.m att = sqrt((D*d)-(d^2)) // added table travel in mm t = (l+att)/tf // cutting time in min. t = t*60 // s printf("\n MRR = %0.2f mm^3/s\n Cutting power = %d watts\n Torque = %0.2f N.m\n Cutting time = %0.1fs" , mrr,p,T,t)
ccc1f1eb4d74f515292e650435d555794be1e686
449d555969bfd7befe906877abab098c6e63a0e8
/2420/CH1/EX1.12/1_12.sce
0b0769fd0a7fdd3cb14e86372c6a05c8cc3e95d8
[]
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
175
sce
1_12.sce
clc clear //Initialization of variables P=50 //hp m=30 //lb E=19000 //Btu/lb //calculations eta= P*2545/(m*E) *100 //results printf("Efficiency = %.1f percent",eta)
6261dd35e95f2c8bbacb888dc565f413f48ffe85
d0ae33963d74821bd5431610a631245d4d389c10
/lab07/MetodoPot_lab_esqueleto.sci
9f454a1bfbc48e6a068e58f538fe73b6ee272a45
[]
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
923
sci
MetodoPot_lab_esqueleto.sci
function[C] = calculaCosseno(a,b) C = // ? endfunction function[autovalor,autovetor] = MetodoPot(M,tol) [n,n] = size(M) //Pega tamanho da matriz. Assumindo que só matrizes quadradas serão fornecidas X_1 = rand(n,1) // Definindo um vetor de "chute inicial" X_1 = X_1/norm(X_1) // Normalizando o vetor (trabalhar com vetores normalizados é fundamental para extração do autovalor) while() // Coloque a condição de convergência do método end autovetor = // ? autovalor = // ? endfunction tol = 10^-15 // Tolerância do método. Não se importar muito com este valor. [autovalor,autovetor] = MetodoPot(M,tol) disp('O autovalor de maior módulo encontrado foi: ') disp(autovalor) disp('E seu autovetor associado foi (normalizado): ') disp(autovetor)
666e7571bc72fa044679c841b577d3d787754d94
991911b2a5fe25b4515d60ea80978b8550f90178
/SCILab/Scripts/graficos_controle.sce
95afbe497eb13ac4637aa88f89324ec6e28e70d2
[]
no_license
fongoses/comunicacao-dados-2013-2
48d2f0cd592ea50c8b1ec6f815c8de62f122c4de
2981e42c5be4550ccd8dd4d4ef93b4397a1ea0d3
refs/heads/master
2016-09-10T10:44:16.480842
2013-12-17T12:48:45
2013-12-17T12:48:45
32,294,010
0
0
null
null
null
null
UTF-8
Scilab
false
false
526
sce
graficos_controle.sce
// graficos de controle // aecc - 200309 xbasc(); s=poly(0,'s'); h=syslin('c',(s^2+2*0.9*10*s+100)/(s^2+2.0*0.9*15*s+225)); h1=h*syslin('c',(s^2+2*0.1*15.1*s+228.01)/(s^2+2*0.9*15*s+225)); // bode subplot(2,2,1) bode([h1;h],0.01,100); // nyquist subplot(2,2,2) nyquist([h1;h]); // chart and black subplot(2,2,3) black([h1;h],0.01,100,['h1';'h']) chart([-8 -6 -4],[80 120],list(1,0)); // evans subplot(2,2,4) H=syslin('c',352*poly(-5,'s')/poly([0,0,2000,200,25,1],'s','c')); evans(H,100); xset('default');
c10012641015765be0a3f60e77a12261f84adf24
c89c3eb73e1c7b9f26076ad36749b4fd9ee2a69d
/My Implementations/OR3-1.tst
83191d22fdf8af87dc462d8deeb273dab54dbf83
[]
no_license
gvela024/Elements-Of-Computing-Systems
cef0f824a4ca775ff7d2353a49c6510134db83da
65a2b40979439b0d77e6fab1b3faa4b1a78ddd03
refs/heads/master
2021-01-22T03:13:48.244660
2015-12-26T00:53:51
2015-12-26T00:53:51
41,272,979
0
0
null
2015-11-11T22:27:40
2015-08-24T00:17:59
Assembly
UTF-8
Scilab
false
false
446
tst
OR3-1.tst
load OR3-1.hdl, output-file OR3-1.out, output-list in0 in1 in2 out0; set in0 0, set in1 0, set in2 0, eval, output; set in0 0, set in1 0, set in2 1, eval, output; set in0 0, set in1 1, set in2 0, eval, output; set in0 0, set in1 1, set in2 1, eval, output; set in0 1, set in1 0, set in2 0, eval, output; set in0 1, set in1 0, set in2 1, eval, output; set in0 1, set in1 1, set in2 0, eval, output; set in0 1, set in1 1, set in2 1, eval, output;
cf8879201e9e5fa6aa915a1fbed275abc44ba99f
c23ee9d6ce9dd38d4a1b8c6c083bab2e40babcb6
/test_case.sce
f2454a47452a513bd35aeefcae33ae2afde6797c
[]
no_license
ee15btech11039/hankel
0d2928f27ecc4260f32eb7bb7da4f11b17cb3326
dc9aeb4010b8985fde8249c945532e6a2746eb83
refs/heads/master
2021-01-23T01:29:39.065051
2017-05-30T21:28:52
2017-05-30T21:28:52
92,877,527
0
1
null
null
null
null
UTF-8
Scilab
false
false
1,287
sce
test_case.sce
//test case //no.1 a=[-0.4134964,-0.2235264;0.3686702,-0.2150430] b=[-1.5040716,-1.1033188]' c=[-2.4574226,-4.441D-16] d=[0] s=%s; sys1=syslin('c',a,b,c,d) g10=hankell(sys1) sys11=dscr(sys1,0.1) g11=hankell(sys11) sys12=dscr(sys1,0.01) g12=hankell(sys12) sys13=dscr(sys1,1) g13=hankell(sys13) sys14=dscr(sys1,0.5) g14=hankell(sys14) sys15=dscr(sys1,2) g15=hankell(sys15) list1=list(g10,g11,g12,g13,g14,g15) //no.2 sys2=syslin('c',s/(s+2)/(s-1.25)/(s-3.5)) g20=hankell(sys2) sys21=dscr(sys2,0.1) g21=hankell(sys21) sys22=dscr(sys2,0.01) g22=hankell(sys22) sys23=dscr(sys2,0.5) g23=hankell(sys23) sys24=dscr(sys2,1) g24=hankell(sys24) sys25=dscr(sys2,2) g25=hankell(sys25) list2=list(g20,g21,g22,g23,g24,g25) //no.3 aa=[-0.5566,1.0000,-1.2472,-0.8536;-0.0197,-0.5566,0.8283,0.5669;0,0,1.7550,1.4611;0,0,0,0.8605] bb=[0,0,0,2.9837]' cc=[3.0574,0,1.0898,0.7459] dd=0 sys3=syslin('c',aa,bb,cc,dd) g30=hankell(sys3) sys31=dscr(sys3,0.1) g31=hankell(sys31) sys32=dscr(sys3,0.2) g32=hankell(sys32) sys33=dscr(sys3,1) g33=hankell(sys33) sys34=dscr(sys3,2) g34=hankell(sys34) sys35=dscr(sys3,5) g35=hankell(sys35) sys36=dscr(sys3,0.0001) g36=hankell(sys36) list3=list(g30,g31,g32,g33,g34,g35) list1=list(list1,list2,list3) disp(list1)
a81c4880f5b82cbec8086be872edba0d64f85d54
449d555969bfd7befe906877abab098c6e63a0e8
/1061/CH4/EX4.9/Ex4_9.sce
46aa32da677c599427ef909abe798efe454f5e3b
[]
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
487
sce
Ex4_9.sce
//Ex:4.9 clc; clear; close; Pi=100*10^-6;// average optical power in watt Po=4*10^-6;// average output power in watt L=6;// in km L1=10;// in km sa=10*log(Pi/Po)/log(10);// signal attenuation sp=sa/L;// signal attenuation per km sn=sp*L1;// signal attenuation for 12 km sn1=sn+9;// overall signal attenuation in dB printf("The signal attenuation=%f dB", sa); printf("\n The signal attenuation per km =%f dB/km", sp); printf("\n The overall signal attenuation=%d dB ", sn1);
21388f2255943fa17482a36d8fb4863b9db9a6a3
449d555969bfd7befe906877abab098c6e63a0e8
/55/CH6/EX6.8/6ex8.sci
363556d2cfc30daf0ccf8f1f30c2c8c6efa6815e
[]
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
538
sci
6ex8.sci
function [k]= myfunc(n,r) k=factorial(n)/(factorial(n-r)*factorial(r)); endfunction k=myfunc(8,3); disp(k,'the number of committees of three that can be formed out of eight people') cows=myfunc(6,3) //number of ways that a farmer can choose 3 cows out of 6 cows pigs=myfunc(5,2) //number of ways that a farmer can choose 2 pigs out of 5 pigs hens=myfunc(8,4) //number of ways that a farmer can choose 4 hens out of 8 hens p=cows*pigs*hens; disp(p,'total number of ways that a farmer can choose all these animals')
a4add2886b47d58b088e5d93aa0d5205a8b6bcce
734830c483d7180158343b9b5599994878b8b197
/make-tests/unfinished/test2.tst
2f328dd9572a85b8b014a690db214bbebee724a1
[]
no_license
aykamko/proj61b
b53a3b569f82522144e010505859aa3ab66585bb
5f6688b70f907107512267712a325f907e5e627b
refs/heads/master
2021-01-16T22:08:56.235971
2013-12-12T09:19:39
2013-12-12T09:19:39
13,669,280
1
0
null
null
null
null
UTF-8
Scilab
false
false
69
tst
test2.tst
T1: T2 T4 T7 T2: T3#ignore me plz T5 T3: T4: T5 T6 T5: T6: T5 T7: T6
6b59434fe3fdc3ea587ea3d0694d6a82ae71f9f9
449d555969bfd7befe906877abab098c6e63a0e8
/821/CH4/EX4.21/4_21.sce
d06773e5ae4c741e586e9fdbad012c6475f5c5d4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
374
sce
4_21.sce
T=293;//temperature 20C in kelvin// R=8.31*10^7;//Universal gas constant in erg per degree per mole// dr=165;//Change of surface tension in erg per cm^2 per mol litre// C=0.06;//concentration we are considering in M// t=(C*dr)/(R*T);//surface excess concentration of phenol in mol per cm^2// printf('surface excess concentration of phenol=t=4.08*10^-10mol per cm^2');
e67b7978f766f31bbfdfe8d2c2996b0736f982b5
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH11/EX11.8/ex11_8.sce
176267e4e20a3f1d8c385561d6c2408cbae4624f
[]
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
411
sce
ex11_8.sce
clc; clear all; c = 3e8; // Velocity of light in air h = 6.626e-34 ; // Planck's constant e = 1.609e-19; // Charge of an electron Eg = 2.8*e ; // Band gap of given semiconductor in joule lambda = ((h*c)/Eg)*1e-6; // Wavelength of emitted radiation disp('um',lambda,'Wavelength of emitted radiation is') // Slight variation in the answer as compared to book... Checked in calculator... Book's mistake
feff23619fab9e170eb91acd7a6b494e81ea453a
449d555969bfd7befe906877abab098c6e63a0e8
/10/CH8/EX4/cha8_4.sce
7986fd7afd0d03dfe33fa6b8730310fba01d32f3
[]
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
176
sce
cha8_4.sce
Lw=30;R=15;Ia=3;V=45; Tow=Lw/R t1=0.7*Tow t0=0:0.1:t1; t=0; a=integrate('45*(-3+6*%e^(-x/2))','x',t,t0) Energy=(1/2)*Lw*Ia^2 ProEnergy=(a/Energy)*100
0d2c68cc961c827faa07df61c71e0289e4424632
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4.1/macros/calpol/hrmt.sci
119445d30919c8cf493d5d3af463d1b3ed7153dc
[ "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
296
sci
hrmt.sci
function [pg,U]=hrmt(v) // Syntax: [pg,U]=hrmt(v) // Finds unimodular U and pg = gcd of a row of polynomials v // such that v*U = [pg,0] //! // Copyright INRIA [n,m]=size(v) if n>1 then error(60),end pg=v(1) U=eye(m,m) for k=2:m [pg,uk]=bezout(pg,v(k)) U(:,k-1:k)=U(:,k-1:k)*uk(:,[2 1]) end
1d2deba21d366a832459de86fb17c52489d774c3
449d555969bfd7befe906877abab098c6e63a0e8
/662/CH3/EX3.17/ex3_17.sce
966dfc1d0bbb91df97d6d8be1ac95673314d8221
[]
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
334
sce
ex3_17.sce
//Example 3.17 clc //Use of logical operators i=int(7); f=5.5; c='w'; v=(i>=6)&(c=='w'); disp(v,"((i >= 6)&( c==w) )"); v = (i>=6) & ( ascii(c)==119); disp(v,"((i >= 6)&( c==119) )"); v=(f < 11) & ( i > 100); disp(v,"((f < 11) & ( i > 100) )"); v=(c~='p') | ((i+f)<= 10); disp(v,"((c~=p) | ((i+f)<= 10) )");
6a49fea49282c2c50a7be922707695e5a61efdf5
0592c9e4cfbb77a0755aff6f0c798d9fe31f6ff4
/nsp/scripts/mpinsp/premia-mpi1.sce
271a9a4714fd134762de1f7d2035aeacfdd462e4
[]
no_license
FinancialEngineerLab/premia-13-cpp_FICC
e19caa6a9cadb4ad1361053efc0dfc9418071cf9
e271da627dbfc8c2c1f7e9f700766544f64c72b2
refs/heads/master
2023-03-16T11:11:26.830681
2016-04-19T05:58:16
2016-04-19T05:58:16
null
0
0
null
null
null
null
WINDOWS-1250
Scilab
false
false
1,656
sce
premia-mpi1.sce
//// Copyright (C) 2007 Javier Fernández Baldomero //// This program is free software // myPi: Classic PI computation by numeric integration of arctan'(x) in [0..1] // // N [1E7] //subdivisions of the [0, 1] interval // mod ['s'] communication modality: (s)end (r)educe // // printed results struct contains // pi estimated pi value // err error // time from argument xmit to pi computed // // Examples: // // This file can be run through // /usr/local/openmpi-1.2/bin/mpirun -c 2 /usr/bin/nsp -nw -f premia-mpi1.sce -e "quit" MPINSP="/usr/local/src/nsp2_dev/contribs/mpinsp/" exec(MPINSP + 'src/loader.sce') if ~MPI_Initialized() then MPI_Init();end MPI_COMM_WORLD=mpicomm_create('WORLD'); [rank] = MPI_Comm_rank (MPI_COMM_WORLD); [size] = MPI_Comm_size (MPI_COMM_WORLD); SLV = (rank <> 0) // MST = ~ SLV; // TAG=4; printf('rank=%d,size=%d\n",rank,size); // PARALLEL // computation (depends on rank/size) //////////////////////// // vectorized code, equivalent to if SLV // All slaves send result back Maturity=0; Strike=0; MPI_Recv(Maturity,-1,TAG,MPI_COMM_WORLD); MPI_Recv(Strike,-1,TAG,MPI_COMM_WORLD); exec('premia.sce'); result= L(1)(3); MPI_Send(result,0,TAG,MPI_COMM_WORLD); else // Here at master for slv=1:size-1 // collect in any order Maturity=slv; Strike=100; MPI_Send(Maturity,slv,TAG,MPI_COMM_WORLD); MPI_Send(Strike,slv,TAG,MPI_COMM_WORLD); end result=0; res=[]; for slv=1:size-1 // collect in any order MPI_Recv(result,-1,TAG,MPI_COMM_WORLD); res=[res,result]; end save('poo.bin',res); end // finalize slaves and master MPI_Finalize();
52788b75651cfc3e224521d1aef850465b1b5b6a
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects/CONT/VW42LKU/ATWM1_Working_Memory_MEG_VW42LKU_Session1/ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce
3a6031c48d06ac29f1171dcdc375f67375e8d1a5
[]
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,618
sce
ATWM1_Working_Memory_MEG_Nonsalient_Uncued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_cued_run1"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 44 61 292 292 399 125 1842 2992 2242 fixation_cross gabor_173 gabor_027 gabor_155 gabor_097 gabor_173 gabor_027_alt gabor_155_alt gabor_097 "1_1_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_173_027_155_097_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_048_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_048_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2192 2992 1942 fixation_cross gabor_146 gabor_038 gabor_106 gabor_083 gabor_146_alt gabor_038 gabor_106_alt gabor_083 "1_2_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_1950_gabor_patch_orientation_146_038_106_083_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_083_framed blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_083_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1992 2992 1942 fixation_cross gabor_065 gabor_172 gabor_039 gabor_103 gabor_065 gabor_172_alt gabor_039_alt gabor_103 "1_3_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2000_3000_1950_gabor_patch_orientation_065_172_039_103_target_position_1_4_retrieval_position_1" gabor_016_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_016_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 2342 fixation_cross gabor_153 gabor_122 gabor_080 gabor_002 gabor_153_alt gabor_122 gabor_080 gabor_002_alt "1_4_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2350_gabor_patch_orientation_153_122_080_002_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_080_framed gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_080_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1792 2992 2592 fixation_cross gabor_059 gabor_169 gabor_016 gabor_036 gabor_059_alt gabor_169_alt gabor_016 gabor_036 "1_5_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2600_gabor_patch_orientation_059_169_016_036_target_position_3_4_retrieval_position_1" gabor_106_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_106_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2192 2992 2392 fixation_cross gabor_016 gabor_168 gabor_079 gabor_050 gabor_016_alt gabor_168 gabor_079_alt gabor_050 "1_6_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2400_gabor_patch_orientation_016_168_079_050_target_position_2_4_retrieval_position_2" gabor_circ gabor_168_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_168_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1842 2992 1892 fixation_cross gabor_003 gabor_112 gabor_081 gabor_062 gabor_003 gabor_112_alt gabor_081 gabor_062_alt "1_7_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_003_112_081_062_target_position_1_3_retrieval_position_1" gabor_143_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_143_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_120 gabor_148 gabor_089 gabor_014 gabor_120_alt gabor_148_alt gabor_089 gabor_014 "1_8_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_120_148_089_014_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_089_framed gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_089_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1792 2992 1992 fixation_cross gabor_093 gabor_032 gabor_179 gabor_068 gabor_093_alt gabor_032 gabor_179_alt gabor_068 "1_9_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1800_3000_2000_gabor_patch_orientation_093_032_179_068_target_position_2_4_retrieval_position_1" gabor_139_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_139_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2192 2992 2492 fixation_cross gabor_096 gabor_006 gabor_157 gabor_051 gabor_096 gabor_006 gabor_157_alt gabor_051_alt "1_10_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2500_gabor_patch_orientation_096_006_157_051_target_position_1_2_retrieval_position_2" gabor_circ gabor_141_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1792 2992 2492 fixation_cross gabor_073 gabor_153 gabor_107 gabor_132 gabor_073_alt gabor_153 gabor_107_alt gabor_132 "1_11_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_2500_gabor_patch_orientation_073_153_107_132_target_position_2_4_retrieval_position_2" gabor_circ gabor_153_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_153_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1792 2992 1892 fixation_cross gabor_065 gabor_155 gabor_129 gabor_050 gabor_065_alt gabor_155 gabor_129_alt gabor_050 "1_12_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_065_155_129_050_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_097_framed blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_097_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_022 gabor_004 gabor_053 gabor_073 gabor_022 gabor_004 gabor_053_alt gabor_073_alt "1_13_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_022_004_053_073_target_position_1_2_retrieval_position_1" gabor_161_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1942 2992 1992 fixation_cross gabor_022 gabor_086 gabor_102 gabor_129 gabor_022_alt gabor_086 gabor_102_alt gabor_129 "1_14_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2000_gabor_patch_orientation_022_086_102_129_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_176_framed blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2092 2992 2292 fixation_cross gabor_075 gabor_157 gabor_018 gabor_092 gabor_075 gabor_157_alt gabor_018_alt gabor_092 "1_15_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_075_157_018_092_target_position_1_4_retrieval_position_1" gabor_075_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2242 2992 2292 fixation_cross gabor_062 gabor_026 gabor_003 gabor_175 gabor_062 gabor_026_alt gabor_003 gabor_175_alt "1_16_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2300_gabor_patch_orientation_062_026_003_175_target_position_1_3_retrieval_position_1" gabor_110_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_110_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1942 2992 2542 fixation_cross gabor_050 gabor_075 gabor_120 gabor_032 gabor_050_alt gabor_075 gabor_120_alt gabor_032 "1_17_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2550_gabor_patch_orientation_050_075_120_032_target_position_2_4_retrieval_position_1" gabor_050_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_050_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2142 2992 2342 fixation_cross gabor_035 gabor_005 gabor_124 gabor_146 gabor_035_alt gabor_005_alt gabor_124 gabor_146 "1_18_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2350_gabor_patch_orientation_035_005_124_146_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_124_framed gabor_circ blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_124_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2092 2992 2192 fixation_cross gabor_132 gabor_074 gabor_026 gabor_098 gabor_132_alt gabor_074 gabor_026 gabor_098_alt "1_19_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2200_gabor_patch_orientation_132_074_026_098_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_163_framed gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 2542 fixation_cross gabor_171 gabor_088 gabor_060 gabor_008 gabor_171_alt gabor_088 gabor_060_alt gabor_008 "1_20_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2550_gabor_patch_orientation_171_088_060_008_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_008_framed blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2042 2992 2492 fixation_cross gabor_149 gabor_103 gabor_133 gabor_069 gabor_149_alt gabor_103_alt gabor_133 gabor_069 "1_21_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2500_gabor_patch_orientation_149_103_133_069_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_133_framed gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_133_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1942 2992 2392 fixation_cross gabor_018 gabor_105 gabor_124 gabor_144 gabor_018 gabor_105 gabor_124_alt gabor_144_alt "1_22_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1950_3000_2400_gabor_patch_orientation_018_105_124_144_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_124_framed gabor_circ blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_124_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2242 2992 2192 fixation_cross gabor_025 gabor_157 gabor_131 gabor_090 gabor_025 gabor_157_alt gabor_131_alt gabor_090 "1_23_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_025_157_131_090_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_043_framed blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_043_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1892 2992 2542 fixation_cross gabor_071 gabor_126 gabor_018 gabor_090 gabor_071 gabor_126_alt gabor_018_alt gabor_090 "1_24_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2550_gabor_patch_orientation_071_126_018_090_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_090_framed blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1792 2992 1892 fixation_cross gabor_052 gabor_086 gabor_171 gabor_005 gabor_052 gabor_086_alt gabor_171_alt gabor_005 "1_25_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1800_3000_1900_gabor_patch_orientation_052_086_171_005_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_005_framed blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_005_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2042 2992 2292 fixation_cross gabor_117 gabor_146 gabor_037 gabor_006 gabor_117 gabor_146 gabor_037_alt gabor_006_alt "1_26_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2300_gabor_patch_orientation_117_146_037_006_target_position_1_2_retrieval_position_1" gabor_164_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2092 2992 2242 fixation_cross gabor_108 gabor_088 gabor_046 gabor_166 gabor_108_alt gabor_088 gabor_046_alt gabor_166 "1_27_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2250_gabor_patch_orientation_108_088_046_166_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_027_framed blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_027_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 2192 2992 2342 fixation_cross gabor_179 gabor_095 gabor_006 gabor_122 gabor_179_alt gabor_095 gabor_006 gabor_122_alt "1_28_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2200_3000_2350_gabor_patch_orientation_179_095_006_122_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_122_framed blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_122_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_079 gabor_125 gabor_107 gabor_020 gabor_079 gabor_125_alt gabor_107_alt gabor_020 "1_29_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_079_125_107_020_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_158_framed blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_158_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2092 2992 2342 fixation_cross gabor_056 gabor_120 gabor_076 gabor_035 gabor_056 gabor_120 gabor_076_alt gabor_035_alt "1_30_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2350_gabor_patch_orientation_056_120_076_035_target_position_1_2_retrieval_position_1" gabor_007_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2042 2992 2142 fixation_cross gabor_028 gabor_134 gabor_102 gabor_064 gabor_028_alt gabor_134 gabor_102_alt gabor_064 "1_31_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2050_3000_2150_gabor_patch_orientation_028_134_102_064_target_position_2_4_retrieval_position_2" gabor_circ gabor_179_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_179_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1992 2992 2392 fixation_cross gabor_039 gabor_061 gabor_174 gabor_117 gabor_039_alt gabor_061 gabor_174 gabor_117_alt "1_32_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_2400_gabor_patch_orientation_039_061_174_117_target_position_2_3_retrieval_position_1" gabor_085_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_085_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1992 2992 2442 fixation_cross gabor_010 gabor_116 gabor_058 gabor_147 gabor_010_alt gabor_116_alt gabor_058 gabor_147 "1_33_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2450_gabor_patch_orientation_010_116_058_147_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_147_framed blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1842 2992 1942 fixation_cross gabor_052 gabor_095 gabor_178 gabor_030 gabor_052_alt gabor_095 gabor_178_alt gabor_030 "1_34_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1850_3000_1950_gabor_patch_orientation_052_095_178_030_target_position_2_4_retrieval_position_2" gabor_circ gabor_140_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2242 2992 2592 fixation_cross gabor_118 gabor_010 gabor_075 gabor_041 gabor_118 gabor_010_alt gabor_075_alt gabor_041 "1_35_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2250_3000_2600_gabor_patch_orientation_118_010_075_041_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_041_framed blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_041_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1892 2992 2542 fixation_cross gabor_109 gabor_133 gabor_180 gabor_028 gabor_109 gabor_133_alt gabor_180_alt gabor_028 "1_36_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2550_gabor_patch_orientation_109_133_180_028_target_position_1_4_retrieval_position_1" gabor_109_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_109_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1892 2992 2442 fixation_cross gabor_018 gabor_178 gabor_090 gabor_129 gabor_018 gabor_178 gabor_090_alt gabor_129_alt "1_37_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1900_3000_2450_gabor_patch_orientation_018_178_090_129_target_position_1_2_retrieval_position_2" gabor_circ gabor_178_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_178_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1892 2992 2092 fixation_cross gabor_042 gabor_174 gabor_063 gabor_095 gabor_042_alt gabor_174 gabor_063_alt gabor_095 "1_38_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1900_3000_2100_gabor_patch_orientation_042_174_063_095_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_063_framed gabor_circ blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_063_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1892 2992 2142 fixation_cross gabor_041 gabor_112 gabor_177 gabor_128 gabor_041 gabor_112 gabor_177_alt gabor_128_alt "1_39_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2150_gabor_patch_orientation_041_112_177_128_target_position_1_2_retrieval_position_2" gabor_circ gabor_160_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1892 2992 2042 fixation_cross gabor_061 gabor_174 gabor_144 gabor_085 gabor_061_alt gabor_174 gabor_144 gabor_085_alt "1_40_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_061_174_144_085_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_007_framed gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_007_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1842 2992 1992 fixation_cross gabor_015 gabor_058 gabor_127 gabor_078 gabor_015_alt gabor_058 gabor_127 gabor_078_alt "1_41_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_015_058_127_078_target_position_2_3_retrieval_position_2" gabor_circ gabor_058_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_058_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 1992 fixation_cross gabor_020 gabor_005 gabor_132 gabor_066 gabor_020 gabor_005_alt gabor_132_alt gabor_066 "1_42_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_020_005_132_066_target_position_1_4_retrieval_position_1" gabor_020_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_020_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 2242 2992 2192 fixation_cross gabor_112 gabor_128 gabor_073 gabor_095 gabor_112_alt gabor_128 gabor_073 gabor_095_alt "1_43_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2250_3000_2200_gabor_patch_orientation_112_128_073_095_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_047_framed blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_047_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1892 2992 2242 fixation_cross gabor_016 gabor_036 gabor_147 gabor_091 gabor_016_alt gabor_036 gabor_147_alt gabor_091 "1_44_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1900_3000_2250_gabor_patch_orientation_016_036_147_091_target_position_2_4_retrieval_position_2" gabor_circ gabor_176_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 1792 2992 2592 fixation_cross gabor_001 gabor_157 gabor_177 gabor_046 gabor_001 gabor_157 gabor_177_alt gabor_046_alt "1_45_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_1800_3000_2600_gabor_patch_orientation_001_157_177_046_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_046_framed blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_046_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2042 2992 2242 fixation_cross gabor_063 gabor_179 gabor_146 gabor_014 gabor_063_alt gabor_179_alt gabor_146 gabor_014 "1_46_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2250_gabor_patch_orientation_063_179_146_014_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_146_framed gabor_circ blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_146_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2092 2992 2392 fixation_cross gabor_146 gabor_028 gabor_073 gabor_011 gabor_146 gabor_028_alt gabor_073_alt gabor_011 "1_47_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2400_gabor_patch_orientation_146_028_073_011_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_057_framed blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2192 2992 2042 fixation_cross gabor_004 gabor_129 gabor_086 gabor_155 gabor_004 gabor_129_alt gabor_086 gabor_155_alt "1_48_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2200_3000_2050_gabor_patch_orientation_004_129_086_155_target_position_1_3_retrieval_position_1" gabor_004_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_004_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 2042 2992 2342 fixation_cross gabor_065 gabor_088 gabor_005 gabor_129 gabor_065_alt gabor_088_alt gabor_005 gabor_129 "1_49_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2050_3000_2350_gabor_patch_orientation_065_088_005_129_target_position_3_4_retrieval_position_2" gabor_circ gabor_039_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_039_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2142 2992 2442 fixation_cross gabor_131 gabor_098 gabor_017 gabor_061 gabor_131 gabor_098 gabor_017_alt gabor_061_alt "1_50_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2150_3000_2450_gabor_patch_orientation_131_098_017_061_target_position_1_2_retrieval_position_2" gabor_circ gabor_147_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2042 2992 2042 fixation_cross gabor_073 gabor_180 gabor_017 gabor_152 gabor_073_alt gabor_180 gabor_017 gabor_152_alt "1_51_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2050_3000_2050_gabor_patch_orientation_073_180_017_152_target_position_2_3_retrieval_position_2" gabor_circ gabor_180_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1942 2992 2042 fixation_cross gabor_138 gabor_056 gabor_117 gabor_077 gabor_138_alt gabor_056 gabor_117 gabor_077_alt "1_52_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1950_3000_2050_gabor_patch_orientation_138_056_117_077_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_117_framed gabor_circ blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2142 2992 2242 fixation_cross gabor_024 gabor_173 gabor_063 gabor_139 gabor_024 gabor_173_alt gabor_063 gabor_139_alt "1_53_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_2250_gabor_patch_orientation_024_173_063_139_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_063_framed gabor_circ blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_115 gabor_170 gabor_093 gabor_004 gabor_115 gabor_170_alt gabor_093_alt gabor_004 "1_54_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_115_170_093_004_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_053_framed blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_053_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1942 2992 2442 fixation_cross gabor_014 gabor_073 gabor_138 gabor_093 gabor_014 gabor_073 gabor_138_alt gabor_093_alt "1_55_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1950_3000_2450_gabor_patch_orientation_014_073_138_093_target_position_1_2_retrieval_position_1" gabor_154_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_154_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 2142 2992 2092 fixation_cross gabor_011 gabor_091 gabor_067 gabor_047 gabor_011 gabor_091_alt gabor_067_alt gabor_047 "1_56_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2150_3000_2100_gabor_patch_orientation_011_091_067_047_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_067_framed gabor_circ blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_067_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1742 2992 2292 fixation_cross gabor_127 gabor_164 gabor_037 gabor_099 gabor_127_alt gabor_164_alt gabor_037 gabor_099 "1_57_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2300_gabor_patch_orientation_127_164_037_099_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_082_framed gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_082_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1742 2992 2092 fixation_cross gabor_153 gabor_104 gabor_040 gabor_175 gabor_153_alt gabor_104 gabor_040 gabor_175_alt "1_58_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1750_3000_2100_gabor_patch_orientation_153_104_040_175_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_085_framed gabor_circ blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_085_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_108 gabor_072 gabor_025 gabor_001 gabor_108_alt gabor_072 gabor_025 gabor_001_alt "1_59_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_108_072_025_001_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_161_framed gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_161_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1842 2992 2592 fixation_cross gabor_129 gabor_076 gabor_114 gabor_057 gabor_129_alt gabor_076_alt gabor_114 gabor_057 "1_60_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2600_gabor_patch_orientation_129_076_114_057_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_057_framed blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_057_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 2192 2992 2142 fixation_cross gabor_102 gabor_118 gabor_054 gabor_073 gabor_102_alt gabor_118 gabor_054_alt gabor_073 "1_61_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_2200_3000_2150_gabor_patch_orientation_102_118_054_073_target_position_2_4_retrieval_position_2" gabor_circ gabor_163_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_163_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_176 gabor_115 gabor_050 gabor_157 gabor_176_alt gabor_115 gabor_050 gabor_157_alt "1_62_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_176_115_050_157_target_position_2_3_retrieval_position_2" gabor_circ gabor_115_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_115_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1992 2992 1942 fixation_cross gabor_145 gabor_062 gabor_037 gabor_126 gabor_145 gabor_062_alt gabor_037_alt gabor_126 "1_63_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_2000_3000_1950_gabor_patch_orientation_145_062_037_126_target_position_1_4_retrieval_position_2" gabor_circ gabor_012_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_012_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2142 2992 1892 fixation_cross gabor_169 gabor_042 gabor_102 gabor_120 gabor_169_alt gabor_042 gabor_102 gabor_120_alt "1_64_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_169_042_102_120_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_102_framed gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_102_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 61 292 292 399 125 1792 2992 1942 fixation_cross gabor_045 gabor_108 gabor_165 gabor_150 gabor_045 gabor_108_alt gabor_165 gabor_150_alt "1_65_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_300_300_399_1800_3000_1950_gabor_patch_orientation_045_108_165_150_target_position_1_3_retrieval_position_1" gabor_090_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 64 292 292 399 125 2242 2992 2192 fixation_cross gabor_099 gabor_056 gabor_082 gabor_162 gabor_099_alt gabor_056_alt gabor_082 gabor_162 "1_66_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_300_300_399_2250_3000_2200_gabor_patch_orientation_099_056_082_162_target_position_3_4_retrieval_position_2" gabor_circ gabor_056_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_UncuedRetriev_retrieval_patch_orientation_056_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1992 2992 1992 fixation_cross gabor_118 gabor_040 gabor_010 gabor_065 gabor_118_alt gabor_040 gabor_010 gabor_065_alt "1_67_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2000_3000_2000_gabor_patch_orientation_118_040_010_065_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_010_framed gabor_circ blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_010_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 2142 2992 1892 fixation_cross gabor_026 gabor_136 gabor_056 gabor_003 gabor_026 gabor_136 gabor_056_alt gabor_003_alt "1_68_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_026_136_056_003_target_position_1_2_retrieval_position_2" gabor_circ gabor_136_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_136_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 63 292 292 399 125 1942 2992 2092 fixation_cross gabor_135 gabor_028 gabor_057 gabor_172 gabor_135 gabor_028 gabor_057_alt gabor_172_alt "1_69_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_300_300_399_1950_3000_2100_gabor_patch_orientation_135_028_057_172_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_103_framed gabor_circ blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_DoChange_UncuedRetriev_retrieval_patch_orientation_103_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 44 62 292 292 399 125 1842 2992 2292 fixation_cross gabor_090 gabor_004 gabor_120 gabor_171 gabor_090_alt gabor_004_alt gabor_120 gabor_171 "1_70_Encoding_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_300_300_399_1850_3000_2300_gabor_patch_orientation_090_004_120_171_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_171_framed blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P5_LR_Nonsalient_NoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
c81514930acc543aeed1cae7e4723e1d68afa569
449d555969bfd7befe906877abab098c6e63a0e8
/887/CH2/EX2.7/2_7.sce
0e4dd9e05a81e5d331f239ff58697633ce8ff491
[]
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
227
sce
2_7.sce
clc //ex2.7 disp('The matrix form is') disp('G*V=I') disp('where') G=[0.45,-0.25,0;-0.25,0.85,-0.20;0,-0.20,0.30]; disp(G,'G=') disp('V=') disp('transpose of [V_1,V_2,V_3]') disp('and') I=[-3.5;3.5;2]; disp(I,'I=')
e147570bbeb3096fd243164051bbc847e91b33e5
a4633944be5b5077362ba6447966bb694c6647ee
/kadai3-1-3.sci
d773ece14aa5e0037f7b3a7376b189947e87b471
[]
no_license
zeno0119/37-communication
79e47660c2ef7cfe08f25457ea577be3f850d000
b879c29b9b21bf226be24749d95e06fc875e02f5
refs/heads/master
2022-12-18T02:53:01.006966
2020-09-11T05:45:14
2020-09-11T05:45:14
293,683,600
0
0
null
null
null
null
UTF-8
Scilab
false
false
708
sci
kadai3-1-3.sci
clear clc exec('C:\Users\ishma\Documents\知的工学システム応用実験\GenerateFunction.sci', -1) fs = 24e3; //fs: サンプリング周波数(24 kHz) t = (0:fs-1)/fs; //時間軸の設定(0秒から,1/fs秒ごとに,1秒まで) sig = cos(2*%pi*20*t + 2 / fs); //20 Hzの正弦波 sigf = dft(sig, 100) freq_search = 1:100; //周波数の探索範囲 for k = freq_search sigmtx(:,k) = sin(2*%pi*k*t); //変数kを1から100まで増加させながら, //各列に周波数 k (Hz)の正弦波を格納 sigmtxf(:, k) = dft(sigmtx(:,k).', 100) end plot(freq_search,sigf.'*sigmtxf) //sigと,sigmtxの各列の内積を計算し,表示 xlabel('Frequency (Hz)') ylabel('Inner product value')
50a34b93b6b0972ac64064eb8587153d310d41a9
449d555969bfd7befe906877abab098c6e63a0e8
/1631/CH4/EX4.7/Ex4_7.sce
e4d7b7a115494ef13c983730dd629d70828c9ee0
[]
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
Ex4_7.sce
//Caption: bitspersample,Transmissionrate //Example 4.7 //page no 171 //find i)bits per sample,ii)transmission rate clc; clear; //Given data fm=3*10^3; q=16; v=(log10(q))/log10(2); disp(v,"bits in code word"); disp("bits"); fs=2*fm; r=v*fs; disp(r,"bit trasmission rate"); disp("bits per second")
b058f0d7e50e29cae15085210050aed5d0d677a2
ebd6f68d47e192da7f81c528312358cfe8052c8d
/swig/Examples/scilab/matrix2/runme.sci
0af7df4e7c8a0bad980d3f15124bddfc8ea65d95
[ "LicenseRef-scancode-swig", "GPL-3.0-or-later", "LicenseRef-scancode-unknown-license-reference", "GPL-3.0-only", "Apache-2.0" ]
permissive
inishchith/DeepSpeech
965ad34d69eb4d150ddf996d30d02a1b29c97d25
dcb7c716bc794d7690d96ed40179ed1996968a41
refs/heads/master
2021-01-16T16:16:05.282278
2020-05-19T08:00:33
2020-05-19T08:00:33
243,180,319
1
0
Apache-2.0
2020-02-26T05:54:51
2020-02-26T05:54:50
null
UTF-8
Scilab
false
false
1,059
sci
runme.sci
lines(0); ilib_verbose(0); ierr = exec('loader.sce', 'errcatch'); if ierr <> 0 then disp(lasterror()); exit(ierr); end // Test lib double matrix functions disp("Call lib function getDoubleMatrix()"); doubleMatrix = getDoubleMatrix(); disp(doubleMatrix); disp("Call lib function sumDoubleMatrix()"); s = sumDoubleMatrix(doubleMatrix); disp(s); disp("Call lib function squareDoubleMatrix()"); sqrd = squareDoubleMatrix(doubleMatrix); disp(sqrd); // Test lib integer matrix functions disp("Call lib function getIntegerMatrix()"); integerMatrix = getIntegerMatrix(); disp(integerMatrix); disp("Call lib function sumIntegerMatrix()"); s = sumIntegerMatrix(integerMatrix); disp(s); disp("Call lib function squareIntegerMatrix()"); sqri = squareIntegerMatrix(integerMatrix); disp(sqri); // Test lib string matrix functions disp("Call lib function getStringVector()"); stringVector = getStringVector(); disp(stringVector); disp("Call lib function concatStringVector()"); stringVector2 = concatStringVector(stringVector); disp(stringVector2); exit
d0fadbeda1417a0eae67087479819ac24929e3cb
449d555969bfd7befe906877abab098c6e63a0e8
/1397/CH1/EX1.11/1_11.sce
59f7b93cd477320406e6a11965d3591e7155bcf8
[]
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
1_11.sce
//clc(); clear; // To determine the thickness of the glass plate mew=1.56; //refractive index of the glass plate lambda=5000*10^(-8); //wavelength of the light in centimetres n=16; t=(n*lambda)/(mew-1); printf("thickness of the glass plate in centimetres when 16 fringes are displaced is %f cm",t);
832a273d1552e6e12dad6d2bc887d7c580a40608
449d555969bfd7befe906877abab098c6e63a0e8
/2183/CH4/EX4.2/Ex_4_2.sce
78e1f0b9a12c34b33356bbb3cebd6f7e66c4ce62
[]
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,068
sce
Ex_4_2.sce
// Example 4.2:Attenuation clc; clear; close; L=1;//in km h1=0.63;//in micro meter h2=1;//in micro meter h3=1.3;//in micro meter Tf=1400;//Temperature in Kelvin p=0.286;//photoelastic coefficient of silica n=1.46;//Refractive index of silica Bc=7*10^-11;//isothermal compersebility in in Metere square per N K=1.38*10^-23;// boltzman constt. in julian per Kelvin x1= (h1*10^-6); x2= (h2*10^-6); x3= (h3*10^-6); Yr1=(8*%pi^3*n^8*p^2*Bc*K*Tf)/(3*(x1)^4);//ray leigh scattering coefficient Ekm1= exp(-Yr1*L*10^3) alpha1=10*(log10(1/Ekm1));//Attenuation in dB/km Yr2=(8*%pi^3*n^8*p^2*Bc*K*Tf)/(3*(x2)^4);//ray leigh scattering coefficient Ekm2= exp(-Yr2*L*10^3) alpha2=10*(log10(1/Ekm2));//Attenuation in dB/km Yr3=(8*%pi^3*n^8*p^2*Bc*K*Tf)/(3*(x3)^4);//ray leigh scattering coefficient Ekm3= exp(-Yr3*L*10^3) alpha3=10*(log10(1/Ekm3));//Attenuation in dB/km disp(alpha1,"Attenuation in dB/km for (h=0.63 micro meter)") disp(alpha2,"Attenuation in dB/km for (h=1 micro meter)") disp(alpha3,"Attenuation in dB/km for (h=1.30 micro meter)")
c308ae0e5b83ce32ff7c52eab49a74a66e517257
449d555969bfd7befe906877abab098c6e63a0e8
/2780/CH2/EX2.19/Ex2_19.sce
01fe6bf651dc15575e2242549e32d6de02da43a8
[]
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
451
sce
Ex2_19.sce
clc //to calculate thickness of the film lambda1=6.1*10^-7 //wavelength in m lambda2=6*10^-7 // wavelength in m //the two dark consecutive fringes are overlapping for the wavelength lambda1 and lambda2 respectively //then, n*lambda1=(n+1)*lambda2 //we get, n=lambda2/(lambda1-lambda2) sini=4/5 mu=4/3 //formula is mu=sini/sinr sinr=0.6 cosr=sqrt(1-(sinr)^2) t=n*lambda1/(2*mu*cosr) disp("the thickness of the film is t="+string(t)+"m")
fae79640c4584e97e0845784ce4448492fa41d0a
449d555969bfd7befe906877abab098c6e63a0e8
/3492/CH3/EX3.4/Ex3_4.sce
09370c2507f0c7b2b94ef55ca0df99539d1e237a
[]
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
392
sce
Ex3_4.sce
clc //Chapter3 //Ex_4 //Given theta=15.2 // in degree d=0.234 // in nm V=100 //in V lambda=2*d*sind(theta) //Braggs condition disp(lambda,"Wavelength of electron in nm is") lambda=1.226/sqrt(V) //debroglie wavelength in nm disp(lambda,"de Broglie Wavelength of electron in nm is") disp("de Broglie Wavelength is in excellent agreement with that determined from Braggs condition")
1846b7e65efd30865957c73600311dfc231f5b18
449d555969bfd7befe906877abab098c6e63a0e8
/1619/CH4/EX4.1.8/Example4_1_8.sce
c25f05e674db8869d6f8a519c076b4d64fedf7e4
[]
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
364
sce
Example4_1_8.sce
//Example 4.1.8 page 4.9 clc; clear; n= 0.70; Ip= 4*10^-6; e= 1.602*10^-19; h= 6.625*10^-34; c= 3*10^8; E= 1.5*10^-19 lamda = h*c/E; lamda=lamda*10^6; //converting um for displaying... printf("The wavelength is %.2f um",lamda); R= n*e/E; Po= Ip/R; Po=Po*10^6; //converting um for displaying... printf("\n\nIncident optical Power is %.2f uW",Po);
f1b58af6e92c7af184f87ac7bbdc56ba571eeb9a
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/goertzel/goertzel10.sce
1684404b71936d22d62142b7a1ad24cca0c338da
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
161
sce
goertzel10.sce
//too many i/p args are passed to the function data=[0 0 0 0 0 0 0 0]; freq_indices = 5; dft_data = goertzel(data,freq_indices,2); disp(dft_data); //output // 0
e83d815e5b059f4a525365f105288adfd9fb2d41
449d555969bfd7befe906877abab098c6e63a0e8
/623/CH19/EX4.2.9/U4_C2_9.sce
93988f8770f80930d78c59feab85367ccae42ef9
[]
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
199
sce
U4_C2_9.sce
//variable initialization l=1 s=1/2 j=3/2 //calculation angle=((j*(j+1))-(l*(l+1))-(s*(s+1)))/(2*sqrt(l*s*(l+1)*(s+1))); //value of cos θ printf("\n cos θ = %.3f",angle);
cf0f0fe3fa2ef808ff6c4bb7a94227ac06eb2da8
8ea401b354e99fe129b2961e8ee6f780dedb12bd
/macros/merge_ordered.sci
7a52db886ea46e5305726256782ed4cfddd227a2
[ "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
523
sci
merge_ordered.sci
function [df] = merge_ordered() // Calls and initializes merge_ordered function // // Syntax // df = merge_ordered() // // Parameters //df: merge_ordered input // // Description //Perform merge with optional filling/interpolation. Designed for ordered data like time series data. Optionally perform group-wise merge (see examples). // Examples // //merging ordered data //df = pd_f.merge_ordered(df1,df2,"+c_str+") // Authors // Aditya Dhinavahi // Sundeep Akella endfunction
d00a4ba29a399cc1a39d0400465c406ecaafd76d
449d555969bfd7befe906877abab098c6e63a0e8
/2384/CH3/EX3.15/ex3_15.sce
71ff16f56ba56b51653ae63d7bb3cb27f4ce5b0e
[]
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
459
sce
ex3_15.sce
// Exa 3.15 clc; clear; close; format('v',6) // Given data A= 2*10;// area under curve for a cycle B= 2;// base of half cycle Vav= 1/2*A/B;// in V // For line AB y1= 0; y2= 10; x1= 0; x2= 1; m_for_AB= (y2-y1)/(x2-x1); // For line BC y1= 10; y2= 0; x1= 1; x2= 2; m_for_BC= (y2-y1)/(x2-x1); Vrms= sqrt((integrate('(m_for_AB*t)^2','t',0,1)+integrate('(m_for_BC*t+20)^2','t',1,2))/2);// in V kf= Vrms/Vav; disp(kf,"The form factor is : ")
df52edbbffbc820c15620062b431759285a44fab
449d555969bfd7befe906877abab098c6e63a0e8
/53/CH9/EX9.2/example_2.sce
c441ded15f2b79eb1cbdfeb36013526fda591e45
[]
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,024
sce
example_2.sce
//caption:design of non inverting amplifier //to design a non inverting amplifier //mid-band gain Av Av=100; //input impedance Zin Zin=1000000;//in ohms //cut-off frequencies fl1 and fl2 fl1=10;//in Hz fl2=10;//in Hz //From problem it follows R3=Zin; disp('fl2=1/(2*%pi*C2*R3)'); disp('C2=1/(2*%pi*fl2*R3)'); C2=1/(2*%pi*fl2*R3); disp('Av=1+(R2/R1)'); disp('Bias compensation can also be obtained by taking R2=R3=1MHz'); R2=R3; disp('R1=1/(Av-1)*R2'); R1=1/(Av-1)*R2; printf('R1=%1.1f Kohms, preferred and standard value is 10Kohms\n',R1/1000); R=R1; R1=10000;//in ohms disp('fl1=1/(2*%pi*C1*R3)'); disp('C1=1/(2*%pi*fl1*R3)'); C1=1/(2*%pi*fl1*R1); printf('RESULTS: Design summary\n'); printf('R1=%1.1f Kohms, preferred and standard value is 10Kohms\n',R/1000); printf('R2=R3=%d Mohm\n',R3/10**6);//divided by 10^6 to convert to Mohms printf('C1=%1.2f uF but standard and preferred value is 2.2 uF\n',C1*(10**6)); printf('C2=%2.1f nF but standard and preferred value is 22 uF\n',C2*(10**9));
4325a1530577e514a757941d9e73eb858bad9e3f
449d555969bfd7befe906877abab098c6e63a0e8
/1322/CH11/EX11.1/77ex1.sce
33607942684a3ec4485564881fbd3aa5e649d67f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
445
sce
77ex1.sce
clear; clc; close; //x-no. of customers. b-the expenses clf; cust=[230 240 270 300 350 380]; profit=[0 0.5 2.0 3.5 6.0 7.5]; plot(cust,profit,6); plot(230,0,'r->.diam'); //profit(y) depends on varying no. of customers(x). xtitle("the straight line graph","no. of customers","profit"); xgrid(); //ex(1) mprintf("(1) From graph, if x=230, then y=0"); //ex(2) mprintf("(2) if no. of customers is <230 then there will be a loss")
cba957cc4ecbb535b15fe7553728fc351931115a
178822612bcd418dc12ba7a649304a24ab618d60
/Numerical Analysis/Cholesky.sci
d38daf5ae9681f5febabe824f332c462b1c6a189
[]
no_license
engom/Math_Problem_Solving
b56c6cbfbff6c416c519795b9ab8f0c0bbba5ea3
6538c476681ae4ee803ea9b3a8944c5f370e1961
refs/heads/master
2022-05-25T01:13:16.123161
2016-02-13T11:32:28
2016-02-13T11:32:28
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,034
sci
Cholesky.sci
A = [2 1 -1;1 1 1;-1 1 6] // factorisation de Cholesky function[]=Choleskii(A) n=size(A,'c'); L=zeros(n,n); // ----------------------------------------------------- L(1,1)=sqrt(A(1,1)); for i=1:(n-1) for k=1:(n-i) L(i+k,i)=(A(i+k,i)-sum(L(i+k,1:i-1).*L(i,1:i-1)))/L(i,i); end L(i+1,i+1)=sqrt(L(i+1,i+1)-sum(L(i+1,1:i).^2)); end // affichage de la matrice triangulaire inférieure B disp('matrice L :'); disp(L'); // vérification que le produit B*B' redonne A disp('matrice A :'); disp(L*L'); endfunction //------------------------------------------------------------------------------------------------ A = [2 1 -1;1 1 1;-1 1 6] // Code de factorisation de Cholesky function[L]=Choleski(A) n= size(A,'c') L =zeros(n,n) for i=1:n s(i)=0 for k=i:n-1 s(i)=s(i)+L(i,k) L(i,i)=sqrt(A(i,i)-s(i)) for j=i+1:n s=0 for k=1:n-1 s= s+L(i,k)*L(j,k) end L(i,j)=(A(i,j)-s)/L(i,i) end end end endfunction
88e81fbbb4f12d8e1245b0dc66bee2e2cbb45b4a
7c82ece01341a445b10f5cccd1ff7c8614e1c5a2
/TP1_Linear system/Tambour_simu.sci
4c289110faa5e139410f102420b91d9bb46dc846
[ "MIT" ]
permissive
PaulEmmanuelSotir/TPs_3IF
87116bcf91d7f871f77bef26e35684f02c5ece87
51e1b82837bd2e9e01fe84721f127c469f1f24a7
refs/heads/master
2021-06-01T15:55:23.452046
2016-05-24T13:54:53
2016-05-24T13:54:53
43,512,483
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,032
sci
Tambour_simu.sci
function [vecs,lambdas] = Deflation(A,nbr_val_propre) // Output variables initialisation (not found in input variables) vecs=[]; lambdas=[]; // Display mode mode(0); // Display warning for floating point exception ieee(1); k = 30; // ! L.4: real(nbr_val_propre) may be replaced by: // ! --> nbr_val_propre if nbr_val_propre is Real. vecs = cell(real(nbr_val_propre),1); lambdas = zeros(nbr_val_propre,1); for i = mtlb_imp(1,nbr_val_propre) [v,lambda_v] = PuissancesIterees(A,k); [u,truc] = PuissancesIterees(mtlb_t(A),k); A = mtlb_s(A,(lambda_v*(v*u'))/(u'*v)); lambdas = mtlb_i(lambdas,i,lambda_v); vecs(i).entries = v; end; endfunction function [vecs,lambdas] = DeflationInverse(A,nbr_val_propre) // Output variables initialisation (not found in input variables) vecs=[]; lambdas=[]; // Display mode mode(0); // Display warning for floating point exception ieee(1); k = 5000; // ! L.4: real(nbr_val_propre) may be replaced by: // ! --> nbr_val_propre if nbr_val_propre is Real. vecs = cell(real(nbr_val_propre),1); lambdas = zeros(nbr_val_propre,1); Z = inv(A); for i = mtlb_imp(1,nbr_val_propre) [v,lambda_v] = PuissancesIterees(Z,k); [u,truc] = PuissancesIterees(Z',k); Z = mtlb_s(Z,(lambda_v*(v*u'))/(u'*v)); lambdas = mtlb_i(lambdas,i,1/lambda_v); vecs(i).entries = v; end; endfunction // Display mode mode(0); // Display warning for floating point exception ieee(1); width = 15; height = 10; fente_pos_y = 6; fente_pos_x = 7; fente_width = 2; DotNum = width*height; nbr_val_propre_sup = 10; nbr_val_propre_inf = 10; X = ones(DotNum,1); X = mtlb_i(X,1:fente_pos_x,0); X = mtlb_i(X,fente_pos_x+fente_width:width,0); X = mtlb_i(X,DotNum-width+1:DotNum,0); for i = 1:height X = mtlb_i(X,(i-1)*width+1,0); X = mtlb_i(X,i*width,0); end; for i = 1:fente_pos_y X = mtlb_i(X,(i-1)*width+fente_pos_x,0); X = mtlb_i(X,(i-1)*width+fente_pos_x+1,-1); X = mtlb_i(X,(i-1)*width+fente_pos_x+2,0); end; X = mtlb_i(X,(fente_pos_y-1)*width+fente_pos_x+1,0); A = zeros(DotNum,DotNum); for n = 1:DotNum if X(n)==1 then // 4-neighbors A(n,n) = -4; A(n,n+1) = 1; A(n,n-1) = 1; A(n,n+width) = 1; A(n,n-width) = 1; else if X(n)==1 then A(n,n) = 1; else A(n,n) = 1; end; end; end; [max_vecs,max_lambdas] = Deflation(A,nbr_val_propre_sup); [min_vecs,min_lambdas] = DeflationInverse(A,nbr_val_propre_inf); it = 2; while it~=0 it = it-1; // !! L.51: Matlab function figure not yet converted, original calling sequence used. // L.51: (Warning name conflict: function name changed from figure to %figure). figure(1); for i = 1:10 // ! L.53: reshape(mtlb_double(max_vecs(i).entries),15,10) may be replaced by: // ! --> reshape(max_vecs(i).entries,15,10) if max_vecs(i).entries is not a character string matrix. // !! L.53: WARNING: Matlab reshape() suppresses singleton higher dimension, it is not the case for matrix. surf(matrix(mtlb_double(min_vecs(i).entries),15,10)) sleep(550); end; sleep(1000); end;
79bd008552c14aa7af0aedb1f89430561153cb32
449d555969bfd7befe906877abab098c6e63a0e8
/215/CH12/EX12.5/ex12_5.sce
3a8a5556f9a29f1f746a31fdfd37896e0ac62a70
[]
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
537
sce
ex12_5.sce
clc //Example 12.5 //Calculate amplitude of line current disp('Given') disp('Line voltage = 300V, Power factor=0.8(lag), Phase power = 1200W') Vline=300;pf=0.8;PW=1200; disp('1200W will be consumed as 400W in each phase') Vp=400 //Phase current be Ip Ip=Vp/(Vline*pf) //Let amplitude of line current be IL IL=Ip*sqrt(3) printf("Line current=%3.2f A \n",IL) //Let Zp be the phase impedance Zpmag=Vline/Ip //Sice power factor is 'lagging' Zpang=(acos(0.8)*180)/%pi printf("Phase impedance = %d(%3.2f deg)ohm",Zpmag,Zpang);
77a7e586d1376f899a9aa60a15a14fd14fe3dbd2
449d555969bfd7befe906877abab098c6e63a0e8
/1445/CH2/EX2.25/Ex2_25.sce
0d45038ac4bd47c15f9b263bd4f3129fb86cff17
[]
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
988
sce
Ex2_25.sce
//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT //Example 25 // read it as example 24 in the book on page 2.78 clc; disp("CHAPTER 2"); disp("EXAMPLE 25"); //VARIABLE INITIALIZATION V=350 //Amplitude in Volts f=50 //frequency in Hz t1=0.005 //sec after wave becomes zero again t2=0.008 //sec after waves passes through 0 in -ve direction //SOLUTION //e=Esinwt //solution (a) //RAmplitude at 1/600 second after it becomes zero w=f*2*%pi; //angular speed v1=V*sin(w*t1); disp("SOLUTION (a)"); disp(sprintf("Voltage after %f sec is %3f A", t1,v1)); disp(" "); //solution (b) //since wave will pass in -ve direction after half period hp=1/(2*f); //half period, the point where sine beomes zero again after origin t=hp+t2; v2=V*sin(w*t); disp("SOLUTION (b)"); disp(sprintf("The voltage would be %f V %3f sec", v2,t)); // //END
07f53db1225275149bebc10d17ee7e01b763d665
449d555969bfd7befe906877abab098c6e63a0e8
/1511/CH1/EX1.10/ex1_10.sce
41e79a657938adbe5b067471cd485f19b00d5d9a
[]
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
367
sce
ex1_10.sce
// Example 1.10 page no-25 clear clc Energy=50 //eV V0=Energy //Volts e=1.6*10^-19 //c m=9.1*10^-31 //kg v0=sqrt(2*e*V0/m) v0=ceil(v0/10^5) v0=(v0/10)*10^6 printf("\nVelocity, v0=%.0f",v0) t=(35.5*10^-12)/(2*10^-3) //Components of velocities are v1=v0*cos(10*%pi/180) v2=v0*cos(20*%pi/180) x=v1-v2 d=x*t printf("\nDistance, d =%.4f cm",d*100)
ee699722ac88e396a5cf607d0b88e50fb109e79c
717ddeb7e700373742c617a95e25a2376565112c
/431/CH3/EX3.10/EX3_10.sce
35121871ff5dde1ff8c28bb8968026f6f3920b25
[]
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
876
sce
EX3_10.sce
//Calculating primary current and primary power factor //Chapter 3 //Example 3.10 //page 211 clear; clc; disp("Example 3.10") V1=6600; //primary voltage in volts V2=240; //secondary voltage in volts kW1=10; //power phi1=acosd(0.8); I2=50; //current in amperes kW3=5; //power phi2=acosd(0.7) kVA=8; //rating phi4=acosd(0.6) I1=(kW1*1000)/(cosd(phi1)*V2); I3=(kW3*1000)/(1*V2); I4=(kVA*1000)/V2; Ih=((I1*cosd(phi1))+(I2*cosd(phi2))+I3+(I4*cosd(phi4))); Iv=((I1*sind(phi1))+(I2*sind(phi2))-(I4*sind(phi4))); I5=sqrt((Ih^2)+(Iv^2)) printf("I5=%dA",I5) Ip=(I5*V2)/V1; printf("\nThe current drawn by the primary from 6600Vmains is equal to,Ip=%fA",Ip); phi=atand(Iv/Ih); printf("\n power factor=%flagging",cosd(phi))
29aca47a75849f50cbde403c1a7959ceddc3869b
449d555969bfd7befe906877abab098c6e63a0e8
/1085/CH15/EX15.1/ex15_1.sce
17cac24e987a82d65fe132ff0ccd95c6c60a7d39
[]
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
sce
ex15_1.sce
//Exam:15.1 clc; clear; close; U_n=1350//mobility of electron in cm2/volt-sec U_h=480//hole mobility in cm2/volt-sec Sigma=1.072*10^10//density of electron hole pair per cc at 300°K for a pure silicon crystal e=1.6*10^(-19);//charge on the electron in C Sigma_i=Sigma*e*(U_n+U_h);//Conductivity of pure silicon crystal p_i=1/(Sigma_i);//Resistivity of silicon crystal in Ohm-cm P_i=p_i*10^(-2);//Resistivity of silicon crystal in Ohm-m disp(Sigma_i,'Conductivity of pure silicon crystal(in mho/cm)='); disp(P_i,'Resistivity of silicon crystal (in Ohm-m)=');
7aede85819a9e48fa9566e626712d5486191c589
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/TSQ3.prev.tst
fd4479ebb6261216ae722864c766a703fb65a5dd
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
516
tst
TSQ3.prev.tst
Expanding for base=2, level=7, reasons+features=base,same,similiar invall,norm,showfail Refined variables=a,b [0+1a,0+1b]: unknown -> [1] [0,0] a²-3b²-8 ---------------- level 0 expanding queue[0]^-1,meter=[2,2]: a²-3b²-8 [0+2a,0+2b]: similiar [0], is mappable by: {a=>a,b=>b} [1+2a,0+2b]: failure constant=-7, vgcd=4 [1,0] 4a+4a²-12b²-7 [0+2a,1+2b]: failure constant=-11, vgcd=4 [0,1] 4a²-12b-12b²-11 [1+2a,1+2b]: failure constant=-5, vgcd=2 [1,1] 2a+2a²-6b-6b²-5 endexp[0] Proof [1] mod 2: a²-3b²-8
7baaccb7b3cee94d9f1e104d3348f98ff801c3fe
786f4889a44528121ba13abdf284f206c1e6553a
/diff/dif-conv-f.sce
d7e80500b30ea9b86abe6ec53271ba34efdbec52
[]
no_license
Arttaaz/MNBPLS
a151d44e13da5016e60944d7df539f4470286449
48eb509fdc834218e57738ffa0c391617e8fd359
refs/heads/master
2020-04-28T10:37:25.692040
2019-03-17T21:54:28
2019-03-17T21:54:28
175,208,639
1
0
null
null
null
null
UTF-8
Scilab
false
false
2,279
sce
dif-conv-f.sce
function dt=calcul_dt(U,dx) dt=dx/max(abs(U)); endfunction function vorti=solveur_1D(vorti, Ux, Nx, kappa, dt, dx) //---------------------------------------------- //TODO implémenter une itération temporelle // de l'algo 1D codé dans le script dif-conf.sce // vort = champ transporté (correspond à phi dans le sujet) // Ux = vitesse sur la composante x // Nx = nombre de points de discrétisation spatiale en x et y. // kappa = constante de diffusion dynamique // dt = pas de temps // dx = pas d'espace //----------------------------------------------- M = zeros(Nx) N = zeros(Nx) for i = 1:Nx-1 M(i, i+1) = -Ux(i)*(dt/(2*dx)) + (Ux(i).^2)*(dt.^2/(2*(dx.^2))) M(i, i) = 1 - 2*(Ux(i).^2)*((dt.^2)/(2*(dx.^2))) M(i+1, i) = Ux(i)*(dt/(2*dx)) + (Ux(i).^2)*(dt.^2/(2*(dx.^2))) N(i, i+1) = -kappa*(dt/(dx.^2)) N(i+1, i) = -kappa*(dt/(dx.^2)) N(i, i) = 1 + 2*kappa*(dt/(dx.^2)) end M(1, Nx) = Ux(1)*(dt/(2*dx)) + (Ux(1).^2)*(dt.^2/(2*(dx.^2))) M(Nx, 1) = -Ux(Nx)*(dt/(2*dx)) + (Ux(Nx).^2)*(dt.^2/(2*(dx.^2))) M(Nx, Nx) = 1 - 2*(Ux(Nx).^2)*((dt.^2)/(2*(dx.^2))) N(1, Nx) = -kappa*(dt/(dx.^2)) N(Nx, 1) = -kappa*(dt/(dx.^2)) N(Nx, Nx) = 1 + 2*kappa*(dt/(dx.^2)) lama = M*vorti vorti = umfpack(sparse(N), '\', lama) endfunction function vort=solveur_2D(vort, Ux, Uy, Nx, Ny, kappa, dt, dx, dy) //---------------------------------------------- //TODO implémenter une itération temporelle // de l'algo de splitting 2D utilisant l'algo 1D // vort = champ 2D transporté (correspond à phi dans le sujet) // Ux = vitesse sur la composante x // Uy = vitesse sur la composante y // (Nx, Ny) nombre de points de discrétisation spatiale en x et y. // kappa = constante de diffusion dynamique // dt = pas de temps // (dx, dy) pas d'espaces dans chaque direction //----------------------------------------------- for i= 1:Ny temp= vort(i,1:Nx)' vort(i,1:Nx) = solveur_1D(temp, Ux(i,1:Nx), Nx, kappa, dt, dx)'; end // Itération sur les colonnes de vort for j=1:Nx vort(1:Ny,j) =solveur_1D(vort(1:Ny,j), Uy(1:Ny,j), Ny, kappa, dt, dy); end endfunction
099d6ae242182f47b347d576afc993647868c7b2
449d555969bfd7befe906877abab098c6e63a0e8
/213/CH9/EX9.7/9_7.sce
f8f4ebb92fe33b413cba96354f4784efbabd728e
[]
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
766
sce
9_7.sce
//To find speeds of shafts clc //Given: alpha=20 //degrees NA=500 //rpm //Solution: //Calculating the maximum speed of the intermediate shaft NBmax=NA/cosd(alpha) //rpm //Calculating the minimum speed of the intermediate shaft NBmin=NA*cosd(alpha) //rpm //Calculating the maximum speed of the driven shaft NCmax=NBmax/cosd(alpha) //rpm //Calculating the minimum speed of the driven shaft NCmin=NBmin*cosd(alpha) //rpm //Results: printf("\n\n Maximum speed of the intermediate shaft, NB(max) = %.1f rad/s.\n",NBmax) printf(" Minimum speed of the intermediate shaft, NB(min) = %.2f rad/s.\n",NBmin) printf(" Maximum speed of the driven shaft, NC(max) = %.2f rad/s.\n",NCmax) printf(" Minimum speed of the driven shaft, NC(min) = %.1f rad/s.\n",NCmin)
ea49ebc144c24b497d4821b2d826b2426dcefadd
449d555969bfd7befe906877abab098c6e63a0e8
/2660/CH5/EX5.15/Ex5_15.sce
9245e376788dd759ee9532c21cdfd83a3423ae21
[]
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
sce
Ex5_15.sce
clc c = 20000 // first cost of machine in Rs s = 1000 // scrap value in machine in Rs b = 180 // annual increase in cost of repairs in Rs n = sqrt(2*(c-s)/b) // years printf("\n Number of years of economic repair life = %0.2f years" , n)
8958b32f5095c110a3ea5af1a2958f657af35a7b
1bb72df9a084fe4f8c0ec39f778282eb52750801
/test/MA16.prev.tst
48a55d9606fc61756afcdbf674016071b3a575cb
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/ramath
498adfc7a6d353d4775b33020fdf992628e3fbff
b09b48639ddd4709ffb1c729e33f6a4b9ef676b5
refs/heads/master
2023-08-17T00:10:37.092379
2023-08-04T07:48:00
2023-08-04T07:48:00
30,116,803
2
0
null
null
null
null
UTF-8
Scilab
false
false
345
tst
MA16.prev.tst
-chain [[0,-2,1,4],[1,1,1,1],[1,-2,0,4],[1,-1,1,4]] [3,4,5,6] 3 1 [[0,-2,1,4],[1,1,1,1],[1,-2,0,4],[1,-1,1,4]],det=-1 [3,4,5,6], chain 8 => [21,18,19,28] => [95,86,97,134] => [461,412,459,642] => [2203,1974,2205,3076] => [10561,9458,10559,14738] => [50595,45316,50597,70614] => [242421,217122,242419,338332] => [1161503,1040294,1161505,1621046]
b34271f512320d70c53b279fbf98b85b3dabcd1d
449d555969bfd7befe906877abab098c6e63a0e8
/2465/CH3/EX3.17/Example_17.sce
2138c04fbd468fc03dc842ee74970bcfed0dfa75
[]
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
401
sce
Example_17.sce
//Chapter-3,Example 17,Page 61 clc; close; m_Ca = 39.975 //atomic mass of Calcium in a.m.u. a_no= 20 //atomic number of calcium m_proton = 1.0078 //mass of proton m_neutron = 1.0086 //mass of neutron\ delta_m=a_no*(m_neutron + m_proton)- m_Ca //mass defect energy= delta_m*931/40 //binding energy per nucleon printf('binding energy per nucleon is %.3f MeV',energy)
fb1ad9b189e2043c45350586c32df818cde1d09e
e822c26ab557aca59a6a1da98e64e1490f3c521b
/ALU/Zero8.tst
dabd8823cdeddf2688e593f5bb706fffc4a36be5
[]
no_license
imilicic/computer-circuits-hdl
92e886422d182f9d2272f8a01a548b9ff0e9c005
e21c052564976997ed176edeb3df4af67d1d2f98
refs/heads/master
2020-05-30T20:25:47.967396
2019-06-03T06:43:10
2019-06-03T06:43:10
189,949,252
0
0
null
null
null
null
UTF-8
Scilab
false
false
235
tst
Zero8.tst
load Zero8.hdl, output-file Zero8.out, output-list in%B1.8.1 out; set in %B00000000, eval, output; set in %B00000001, eval, output; set in %B00001000, eval, output; set in %B10000001, eval, output; set in %B11111111, eval, output;
004ee6c0696a235f06be8aa6be5cf99c25a0bdc6
663857eeaf229747b6f19ba93d35654aed648084
/gestionDesContact_charneux/rigid_collis_exo.sce
1d3687b3f51d709cf4d762fc503f1f8b967e16da
[]
no_license
DimitriCharneux/M3DA
0a61e0365d1daf7b57a071f1da2025ac5991693d
b0d4baf1115b0577c5295401d8fc81552f779ced
refs/heads/master
2021-06-14T11:09:03.784206
2017-01-12T10:10:28
2017-01-12T10:10:28
68,389,037
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,132
sce
rigid_collis_exo.sce
function [A]=ComputeSurface(P1,P2,P3) // matrice pour créer les fonctions d'interpolation Matrice = [ 1 1 1; P1(1) P2(1) P3(1); P1(2) P2(2) P3(2)]; // matrice des fonctions d'interpolation linéaire A= abs(det(Matrice))/2; endfunction getd(); clear all; // MAILLAGE // [ noeuds , elements ] = MSHLoader('circle.msh'); numElements = size(elements,2); numNoeuds = size(noeuds,2); // calcul de la masse (et du centre de gravité...) G=[0;0]; TotalSurf=0; M=zeros(numNoeuds,1); mass_vol= 0.027; // alu (kg/cm^3) epaisseur=0.5; rayon = 5; /// faire ici un calcul pour obtenir une valeur correcte sur mG (masse du centre de Gravité) /// //mG= 10; mG = %pi*rayon*rayon * epaisseur * mass_vol; //acceleration (2D)/ vitesse (2D) / position du centre de gravité aG=[0;0]; vG=[0;0]; pG=[-5;5]; dt = 0.002; T = 0.3; // paramètres pour la pénalité k=10000; //plus on l'augmente, plus ça rebondit b=20; // gif de sortie S = []; S(1) = 'GIF\rigidanim'; t=100; S(2) = string(t); S(3) = '.gif'; k_t=0 for time=0:dt:T, // calcul des forces de contact rapporté au centre de gravité FC=[0;0]; // calculer le déplacement du maillage en fonction du déplacement du centre de gravité noeuds_deplaces = noeuds; for i=1:numNoeuds noeuds_deplaces([1:2], i) = noeuds([1:2], i) + pG; detection = noeuds_deplaces(2, i)+2 ; if(detection <= 0) //FC(2,1) = FC(2,1) - k * noeuds_deplaces(2, i)+2 ; FC(2,1) = FC(2,1) - k * detection -b * vG(2,1) ; end end // calcul de la dynamique d'un corps rigide (intégration explicite) aG = ([0;-981]*mG + FC) /mG; vG = vG + aG*dt pG = pG + vG*dt; clf; a = scf(0); //a=get("current_axes");//get the handle of the newly created axes draw_mesh( noeuds_deplaces, elements) // draw obstacle x=[-10:10:10] y=ones(1,3)*-2 plot(x,y) plot(pG(1),pG(2),'x') //a.children.data_bounds=[-10,-10;10,10]; k_t=k_t+1; S(2) = string(k_t+99); xs2bmp(0,strcat(S)); xpause(1000); end
7b6aae6cbd3c0b19b94ada787d9564d4c2e21a1f
449d555969bfd7befe906877abab098c6e63a0e8
/1760/CH3/EX3.3/EX3_3.sce
80403a2f54687a05c63ea60b0ea3316a18a8ac69
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
352
sce
EX3_3.sce
//EXAMPLE 3.3 PG NO 174 Zy=3+%i*5.196; Zeq=2.55+%i*2.916; Vp=230.94; IL=59.61; Ip=59.61; VL=400; cos(48.83)=0.658; sin(48.83)=0.7527; S=sqrt(3)*VL*IL; P=sqrt(3)*VL*IL*0.658; Q=sqrt(3)*VL*IL*0.7527; disp('i) S = '+string (S)+'VA ') disp('i) Active power = '+string (P)+'W ') disp('i) Reactive power = '+string (Q)+'Vars ')
258311d8ad02d21dd4fa1b90401d35a04596ced6
449d555969bfd7befe906877abab098c6e63a0e8
/2093/CH1/EX1.22/exa_1_22.sce
ec07d04bf6cc424badb6b3783cab6449a28fb221
[]
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
471
sce
exa_1_22.sce
// Exa 1.22 clc; clear; close; // Given data vo= -10;// in V i_f= 1;// in mA i_f= i_f*10^-3;//in A // Formula vo= -i_f*Rf Rf= -vo/i_f;// in Ω // The output voltage, vo= -(v1+5*v2) (i) // vo= -Rf/R1*v1 - Rf/R2*v2; (ii) // Comparing equations (i) and (2) R1= Rf/1;// in Ω R2= Rf/5;// in Ω disp(Rf*10^-3,"The value of Rf in kΩ is : ") disp(R1*10^-3,"The value of R1 in kΩ is : ") disp(R2*10^-3,"The value of R2 in kΩ is : ")