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
976344f8a307900901166f4a3c0ee81c1769dfd0
449d555969bfd7befe906877abab098c6e63a0e8
/3843/CH9/EX9.6/Ex9_6.sce
100fe7f7be0adb2cb85a43663a51abed69efa313
[]
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
751
sce
Ex9_6.sce
// Example 9_6 clc;funcprot(0); // Given data r=16;// The compression ratio T_1=200+273;// K P_1=200;// kPa r_c=2;// The cut off ratio r_p=1.3;// The pressure ratio c_p=1.00;// kJ/kg.K c_v=0.717;// kJ/kg.K R=0.287;// kJ/kg.K k=1.4;// The specific heat ratio // Calculation n=1-((1/(r^(k-1)))*(((r_p*r_c^k)...
2158a191d1cc99076b4be3c41c5561d05d227c68
449d555969bfd7befe906877abab098c6e63a0e8
/278/CH17/EX17.3/ex_17_3.sce
d4778eec8136b82cf236e2154d510806eae82917
[]
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
ex_17_3.sce
clc //soluiton //given do=55//mm p=10//mm W=400//N D2=60//mm D1=90//mm R1=45//mm R2=30//mm u=0.15 u1=0.15//=//tan(q) v=6//m/min d=do-(p/2)//mm //tan(a)=p/(%pi/d)=b=0.0637 b=0.0637 //P=W*tan(u+a) //P=W*[(tan(a)+tan(q))/(1-tan(a)*tan(q))] P=W*[(b+u)/(1-(b*u))]//N R=(R1+R2)/2//mm T=[(P*d/2)+(u1*W*R)]/1000//N-mm N=v/0.01/...
5a47238a7efeb56f6a6772cfe5d34abc81408d74
e6d5f1d801a3fe887b5dc04b8cc0a9eabc1fd432
/Semana_3/trabajo_lab_grupo1.sce
313b14a5f24b4783ef0db13c99ed1609ec34ab73
[]
no_license
lordjuacs/MateIII
70def332063e56eb10fb47678a7e6130dc0dca63
164c53b61c9e35e565121f77ba2c578680a3ab56
refs/heads/master
2021-05-24T15:56:01.078904
2020-07-27T19:57:34
2020-07-27T19:57:34
253,643,962
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,247
sce
trabajo_lab_grupo1.sce
function [L,U] = crout(A) [m,n] = size(A) L = A; U = eye(n,n); for k=1:n-1 pivot = L(k,k) for j = k+1:n U(k,j)= L(k,j)/pivot L(:,j)=L(:,j)-U(k,j)*L(:,k) end end endfunction function [L,U] = doolittle(A) [m,n] = size(A) U = A; L = eye(n,n); ...
35d8e5477c8dd02d231a05e48ace91748e783d99
449d555969bfd7befe906877abab098c6e63a0e8
/2216/CH11/EX11.2/ex_11_2.sce
58dfbd95d55500c84559c3639d62101d6051c881
[]
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
569
sce
ex_11_2.sce
//Example 11.2:position clc; clear; close; a=8.2;//in micro meter n1=1.45;// n2=1.446;// h1=1.31;//in micro meter h2=1.55;///in micro meter v1=((2*%pi*a*sqrt(n1^2-n2^2))/h1);// v2=((2*%pi*a*sqrt(n1^2-n2^2))/h2);// db=2.439;// del=5.5096*10^-3;// k1=1.0483;//mm^-1;// k2=1.2839///m^-1 l1=((%pi)/(4*k1));//in mm l2=((%pi)...
e4ce4ea7851f70a7d9ec3e85ac6032070ecb8fe8
527c41bcbfe7e4743e0e8897b058eaaf206558c7
/Positive_Negative_test/Netezza-Base-MatrixOperations/FLEigenSystemUdt-NZ-01.tst
5753d9219c3429fe0eea3ad4d2381e983f4347b2
[]
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
30,583
tst
FLEigenSystemUdt-NZ-01.tst
-- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Netezza -- -- Copyright (c): 2014 Fuzzy Logix, LLC -- -- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC. -- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC. -...
413898c364b1753889d90b0f81870ddb1efc8325
449d555969bfd7befe906877abab098c6e63a0e8
/137/CH2/EX2.3b/prob_2_3b.sce
e0f538b757f0f5e189fa4d26d4d7a90ca141b21e
[]
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
351
sce
prob_2_3b.sce
// page no.26 //exa no.2.3b t=[-3:.0082:1]; m1=(0-1)/(-3-(-1));//slope for -3<t<-1 c1=(0-m1*(-3));//intercept for pt(-3,0) u(t<=-1)=[(m1*t(t<=-1))+c1]' m2=(1-0)/(-1-1);//slope for -1<t<1 c2=(0-m2*1)//intercept for pt(1,0) u(t>-1)=[(m2*t(t>-1))+c2]'; subplot(221) plot2d(t,u)//original signal subplot(222) plo...
8241d8124ee8b2bcc1167ea5700e22b8379ea5c5
4b3c8d2302d37ad5981adb6f68fae3db1d9820c8
/add_Blocks.sce
8169998d8138b4341ca7dbaf2cab49a1344504b7
[]
no_license
mayank1513/littleBird_RD_ResourceManagementSystem
002d19579b3b55a314450ec75d2874131741564b
090d016248164580defc9b4629ba54c9dc362949
refs/heads/master
2020-03-15T04:48:31.637752
2018-05-03T09:46:53
2018-05-03T09:46:53
131,970,842
0
0
null
null
null
null
UTF-8
Scilab
false
false
899
sce
add_Blocks.sce
str = get(get('edit_blockList'),"String"); for i = 1:size(str,2)-1 str(i) = stripblanks(part(str(i),1:$-1)); end str($) = stripblanks(str($)); addblk_msgStr = []; for i = 1:size(str,2) if isempty(str(i)) then continue; end if ~isempty(find(blocks(1)==str(i))) then addblk_msgStr($+1) = st...
c2c36f4e987e77104c5e53f3283b03ef524ddfd4
b68ae1fc3cd37c85031f69e42d92903b7f1a90ab
/projects/07/StackArithmetic/SimpleAdd/SimpleAddVME.tst
b8a9a9126544a52190bbf25273160136c7892eda
[]
no_license
bricef/The-Elements-of-Computing-Systems
fb3aa100c18176ccfc876e9d30319c0b8a5c7635
6be81eacaa30ad57b06f018c0aecbcf7e04841bc
refs/heads/master
2021-01-18T13:43:02.653913
2011-04-06T19:23:52
2011-04-06T19:23:52
1,578,790
5
1
null
null
null
null
UTF-8
Scilab
false
false
420
tst
SimpleAddVME.tst
// This file is part of the materials accompanying the book // "The Elements of Computing Systems" by Nisan and Schocken, // MIT Press. Book site: www.idc.ac.il/tecs // File name: projects/07/StackArithmetic/SimpleAdd/SimpleAddVME.tst load SimpleAdd.vm, output-file SimpleAdd.out, compare-to SimpleAdd.cmp, ou...
03a04f9d5f5487aece67fb823b713f1d2a816bb0
8aadf599f8aab148e92661d729bdd436529b3824
/poster/Scrapbookposter/Copy of g3827.sce
c01245c6dcb8225ca85b2a7325b413c162bd0557
[]
no_license
schrfr/osp.work.spion
8e7fdd66ed65fed7dd019247b1ce5d939250361d
b3c71ab8cbaf69a5c52ee808af1c0b9bb0c13f9d
refs/heads/master
2020-05-30T11:28:05.326941
2013-08-07T20:40:34
2013-08-07T20:41:24
11,801,464
0
0
null
null
null
null
UTF-8
Scilab
false
false
12,341
sce
Copy of g3827.sce
<SCRIBUSELEMUTF8 W="312.449135417335" H="443.809681380351" previewData="iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAACBJREFUaIHtwQEBAAAAgiD/r25IQAEAAAAAAAAAAMCjASdCAAFkjjE+AAAAAElFTkSuQmCC" YP="432.807960372795" XP="2573.56233847769" COUNT="6" Version="1.4.0.rc3"> <F...
99fd4268b53b5e654a33ef934fa1519818ed4d04
449d555969bfd7befe906877abab098c6e63a0e8
/1991/CH4/EX4.3/3.sce
41e2d6623320142f934b85ce2670bbe177d105d6
[]
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
303
sce
3.sce
clc clear //INPUT DATA f=520 //frequency t2=293 //air temperature to produce fundamental +273 t1=273// 0deg C v1=330//speed of sound waves //calculation v2=330*(293/273)^0.5 //speed at 20 deg C l=v2/f//wavelength len=l/4 - 0.01 //length //output printf("the length of tube is %3.3f m",len)
38a340d0844da51690f2cb55e1aa55beb9b65080
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH6/EX6.1/6_1.sce
1326e06eb69fc8933e100d36246fafed71801e00
[]
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
617
sce
6_1.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 6.1 //calculation of the angle made by the contact force with the vertical and the magnitude of contact force //given data M=.4//mass(in kg) of the body f=3//frictional force(in N) g=10//gravitational acceleration(in...
1f13cfb489fdddb7cf1680633f094dbefdc22229
449d555969bfd7befe906877abab098c6e63a0e8
/1106/CH6/EX6.8/ex6_8.sce
fc181e72341ebc97c1e90a203d868432d1f46cba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
236
sce
ex6_8.sce
// Example 6.8, Page No-282 clear clc R2=16*10^3 R3=16*10^3 Rf=15.8*10^3 Ri=27*10^3 C2=0.01*10^-6 C3=0.01*10^-6 fL=1/(2*%pi*sqrt(R2*R3*C2*C3)) fL=fL/1000 printf('\nfL= %.1f kHz', fL) A=1+Rf/Ri printf('\nA= %.3f', A)
57282378223862d78324124ac631c8bb30c6ef69
449d555969bfd7befe906877abab098c6e63a0e8
/2021/CH3/EX3.2/EX3_2.sce
2311392a3747d5691f4342aad1a48d23872a04b1
[]
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
224
sce
EX3_2.sce
//Finding of Total Pressure //Given d=1.5; y1=2; rho=1000; g=9.81; //To Find Ig=(%pi*d^4)/64; Ay=(%pi/4)*d^2; P=Ay*rho*g*y1; Ycp=(Ig/Ay)+y1; disp("P= "+string(P)+" Newtons"); disp("Ycp ="+string(Ycp)+" meter");
9c8367c7d8a475cd676df662e48f4fb650132fd7
449d555969bfd7befe906877abab098c6e63a0e8
/3574/CH1/EX1.9/EX1_9.sce
dc3a99e76f6e367d5827e77d905c1005f41aeeb1
[]
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
694
sce
EX1_9.sce
// Example 1.9 // Computation of (a) Frequency of the generated emf (b) Speed of the rotor //Page No. 31 clc; clear all; close; // Given data Erms=100; // Voltage generated in armature coil N=15; // Number of turns in armature coil phimax=0.012; // Flux per pole P=4; ...
245f3d0ee46933df04e5f403d69886bec0eba9b0
449d555969bfd7befe906877abab098c6e63a0e8
/998/CH29/EX29.4/Ex4.sce
39e7b7d2bc405422e42eebf1fd51b7273d6bf190
[]
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
294
sce
Ex4.sce
//Ex:4 clc; clear; close; h_p=1000;//perigee height in km h_a=4000;//apogee height in km R_E=6378.14;// radius of earth in km a=(2*R_E+h_p+h_a)/2;//Semi major axis in km u=3.986*10^5//km^3 per sec^2 T_P=(4*%pi^2*a^3/u)^(1/2);//Orbit period in sec printf("Orbital period =%f sec",T_P);
404cf8caa2dd7614815030c3bd8bf62719288877
15d3702a1f4402ab16e6b4cfc725ff7e996843ef
/predictions/linzen-swap/wsj-23-naive/parses.tst
bfd855df837c6255f4aff20547995c7648e8bbb1
[]
no_license
viking-sudo-rm/industrial-stacknns
2ecb36a6c5da2e295b91f854dc96d6bc4c2e4b6a
f08da2dcc27f2688eb99e10934ad89e41b879de8
refs/heads/master
2020-04-26T03:36:50.038626
2019-12-26T16:51:52
2019-12-26T16:51:52
173,272,681
14
3
null
2019-04-13T19:51:25
2019-03-01T09:22:01
Jupyter Notebook
UTF-8
Scilab
false
false
751,699
tst
parses.tst
(X (X no) (X (X ,) (X (X it) (X (X was) (X (X n't) (X (X Black) (X (X Monday) (X .)))))))) (X (X but) (X (X while) (X (X the) (X (X New) (X (X York) (X (X Stock) (X (X Exchange) (X (X did) (X (X n't) (X (X fall) (X (X apart) (X (X Friday) (X (X as) (X (X the) (X (X Dow) (X (X Jones) (X (X Industrial) (X (X Average) (X ...
db303d054974645d0d370450f3495cfb70b79077
449d555969bfd7befe906877abab098c6e63a0e8
/3841/CH7/EX7.9/Ex7_9.sce
a30e90758c7b887e7b654291605124fdafa7d149
[]
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
224
sce
Ex7_9.sce
clear //find fuel consumption when using fuel 18 //given bth=38. //calculating heat input //1 bhp 2544 hi=(2544./bth)*100. printf("\n \n heat input %.2f btu per hp",hi) F=hi/18390. printf("\n \n fuel consumption %.2f lb",F)
851e653c4cc0ab74cbf7e972a912f365ad7c1a9a
1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08
/Scilab/PCIeGen3/LFSRForPCIEGen3/LFSR_lowpass_plot.sce
33d3cd9dcc96c7cf7f3bb42fe1c82668d426c1f9
[]
no_license
lrayzman/SI-Scripts
5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d
9ab161c6deff2a27c9da906e37aa68964fabb036
refs/heads/master
2020-09-25T16:23:23.389526
2020-02-09T02:13:46
2020-02-09T02:13:46
66,975,754
0
0
null
null
null
null
UTF-8
Scilab
false
false
273
sce
LFSR_lowpass_plot.sce
//Simulation of DC wander based on LFSR-generated bitstream // // //stacksize(128*1024*1024); clear; //Clear user variables n=11; output=zeros(1,2^n-1); fd=mopen('output_save','r') load(fd,'n', 'output'); mclose(fd) plot2d(output);
dd0805228be2314d562b97491ee5c0dc4e1be2f8
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH30/EX30.1/Ex30_1.sce
0c3e66c6e20a8b2b136bff0f8c6b9e8ac56d0445
[]
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
570
sce
Ex30_1.sce
//Example 30.1 n_f=2;//For Balmer series n_i=4;//For second line of Balmer series R=1.097*10^7;//Rydberg constant (m^-1) lambda=1/[R*(1/n_f^2-1/n_i^2)];//Wavelength equation (m) printf('a.Wavelength corresponding to second line of Balmer series = %0.1f nm',lambda*10^9) m=1;//Order of interference theta=15;//Angl...
71417e48afa3e985f160d8488412f152bb62cbbe
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH4/EX4.4/ex4_4.sce
251370840d4f1ad6fadb61d27913cf192d3a7933
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
404
sce
ex4_4.sce
clc; clear all; Q = 1.5; // Power radiated by louspeaker in Joule per second r = 20; // Radius in meters I0 = 1e-12; // Standard intensity level in Watts per square meters I2 = (Q/(4*%pi*r^2)); // Intensity of the sound produced ny loudspeaker b = 10*log10(I2/I0);//The intensity level of sound produced by loudspe...
5be252cacc74607d2c668344501aad2f9aa30dd7
c6902e84eb0151d2c3a595a4b7db2c2293bcf2e6
/sem11/NEB100/Projeto_URA/xcos/gui.sci
aeada4022526b9fd57688d001f537a8de037ffba
[]
no_license
Ryuji357/FEIALL
6d1076ea594a32a60b8fa7e1cb165e0db05c43aa
469484f5a4ac1619eed953db86286cb17074c5aa
refs/heads/master
2022-05-12T22:55:25.924225
2022-04-16T04:23:17
2022-04-16T04:23:17
245,020,403
2
0
null
null
null
null
UTF-8
Scilab
false
false
655
sci
gui.sci
// Include an editable table into a figure: // Building a table of data: params = ["City" "Country" "Population [Mh]" "Temp.[°C]"]; towns = ["Mexico" "Paris" "Tokyo" "Singapour"]'; country = ["Mexico" "France" "Japan" "Singapour"]'; pop = string([22.41 11.77 33.41 4.24]'); temp = string([26 19 22 17]'); table = [para...
d6a47ef7b9f6690c3b36f756e5800e8aae7f540f
449d555969bfd7befe906877abab098c6e63a0e8
/1748/CH2/EX2.18.p/problem2_18.sce
8439b04d09a03e3d02925ad644e8c5fb1cc00d0e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
576
sce
problem2_18.sce
//problem 2.18 clc; clear; close; //given data : format('v',6); P=8;//no. of poles f=50;//in Hz R2=0.04;//in ohm/phase N=645;//in rpm Ns=120*f/P;//in rpm S=(Ns-N)/Ns*100;//unitless S=S/100;//unitless //S=R2/X2;//at max torque X2=R2/S;//in ohm per phase a=R2/X2;//unitless TstartBYTmax=2*a/(a^2+1);//ratio...
ec0c4e1ce3e0193b80156c527458e07b98420dd8
449d555969bfd7befe906877abab098c6e63a0e8
/331/CH9/EX9.12/Example_9_12.sce
43c1eac7ce5f492cc30bbb4b1f305f3799f5c31e
[]
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
931
sce
Example_9_12.sce
//Caption: Two-Samples Tests //One-tailed two-samples sign tests with binomial distribution //Example9.12 //Page330 //Test 1: Ho: uX = uY or p = 1/2 // H1: uX> uY or p > 1/2 clear; clc; n = 9; //Number of observations of each sample plus_signs = 6; minus_signs = 3; alpha = 0.05; //significance level ...
e3fdcc0c083d48fcf7896c61a38fffeaa567ba2e
449d555969bfd7befe906877abab098c6e63a0e8
/2252/CH17/EX17.6/Ex17_6.sce
262a8164de6504845f59c472d8f871612fc4f090
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
566
sce
Ex17_6.sce
n=60//no. of slots on armature c=6//conductors per slot Z=n*c//total no. of conductors A=2//no. of parallel paths in armature winding N=750//speed of rotation P=4//no. of poles Eg=230//emf generated on open circuit phi=60*Eg*A/(P*N*Z) mprintf("Useful fux per pole=%f Wb\n",phi) Eg=115//emf to be generated at ...
48c01faf9e3088897a3a6e1726b1c75b6afd33fe
b9602336613b26d0b9c22a09d219c0ed8e158b4e
/Examples/Examples_MatFunc/vectorise.sce
c31f81c69fb134eaa45c546361dfad3b2f8fdce5
[ "BSD-2-Clause" ]
permissive
CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox
d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd
70c97cda4e0dd54df0a638e9b99f380c09ffa37e
refs/heads/master
2022-12-11T01:28:28.742041
2020-08-26T12:24:27
2020-08-26T12:24:27
290,481,428
0
0
null
null
null
null
UTF-8
Scilab
false
false
197
sce
vectorise.sce
// // Function Name: vectorise // // Returns the vectorise array of input matrix // // Calculating the vectorise. inputMat = [ 1, 2, 3; 4, 5, 6; 7, 8, 9;] result = armaMatFunc("vectorise",inputMat)
ca55699b0033a375cd9066c315a759ab1ef67685
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.18_9.tst
d37cd7700aa0e6beaec3b835277e8e9136ae5df0
[]
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
556,570
tst
5.18_9.tst
18 188:2 269:1 603:1 646:1 767:1 782:1 1248:2 1280:1 1281:1 1316:1 1647:1 1842:2 2043:1 2322:1 2361:1 2393:1 2432:2 2450:1 2557:2 2653:1 2687:1 2720:1 2728:1 2880:1 3107:1 3317:1 3479:1 4066:1 4089:1 4133:1 4185:1 4186:1 4754:1 4851:1 4922:1 5310:1 5648:1 5651:1 5882:1 6020:1 6127:1 6363:1 6630:1 6645:1 6672:1 6815:1 7...
fb3514391f8ba03cf03f4d16a10c1a2b96fed893
449d555969bfd7befe906877abab098c6e63a0e8
/2705/CH5/EX5.7/Ex5_7.sce
85cf1c2f9ccac27876380d8b45763f346626f58c
[]
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
792
sce
Ex5_7.sce
clear; clc; disp('Example 5.7'); // aim : To determine // the heat transferred to the gas and its final pressure // Given values m = 2;// masss of the gas, [kg] V1 = .7;// volume,[m^3] T1 = 273+15;// original temperature,[K] T2 = 273+135;// final temperature,[K] cv = .72;// specific heat capacity...
f5c6aef8df5c03d46a5b2e61001390f502676daf
449d555969bfd7befe906877abab098c6e63a0e8
/1760/CH8/EX8.30/EX8_30.sce
c2b07ead7d2ef66c690c4a0933b944e0956f35c4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
259
sce
EX8_30.sce
//EXAMPLE 8-30 PG NO-548 R1=10000; Fc1=40000 ; C1=1/[R1*Fc1*2*%pi]; disp('ii) CAPACITOR (C1) is = '+string (C1) +' F '); Fc2=8000; R2=5000; C2=1/[R2*Fc2*2*%pi]; disp('ii) CAPACITOR (C2) is = '+string (C2) +' F ');
6d81dbd5000fed8c9c80f89d32ac1cc8c4017a6f
449d555969bfd7befe906877abab098c6e63a0e8
/1955/CH9/EX9.18/example18.sce
e9e16204333ee5306731dbf36a8a266e41326021
[]
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,013
sce
example18.sce
clc clear //input data N=50//Speed of the turbine in rpm d=6//Runner diameter of the turbine in m Ae=20//Effective area of flow in m^2 b11=150//The angle of the runner blades at inlet in degree b22=20//The angle of the runner blade at outlet in degree g=9.81//Acceleration due to gravity in m/s^2 dw=1000//Densi...
38a213eab7af9f52d46a80ceb826820a2295fb0e
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH17/EX17.12/Ex17_12.sce
80eca67555615bca473d880119310a714af187ba
[]
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
260
sce
Ex17_12.sce
clear //Given a=52 //Degree b=33 //Degree //Calculation // u2=(sin(a*3.14/180.0))/(sin(b*3.14/180.0)) C=1/u2 A=asin(C)*180/3.14 //Result printf("\n Angle of refrection is %0.1f Degree",A)
9ebc0fd8f0cdc16bc237cabaa442c14dd1155324
449d555969bfd7befe906877abab098c6e63a0e8
/389/CH8/EX8.6/Example8_6.sce
342322cb31cc5a9f62ab06c170800be8c5a1cec2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,755
sce
Example8_6.sce
clear; clc; // Illustration 8.6 // Page: 304 printf('Illustration 8.6 - Page: 304\n\n'); // solution //****Data****// // Gas: // In: y_prime1 = 0.02; Y_prime1 = 0.0204;// [mol/mol dry gas] // Out: y_prime2 = 0.00102; Y_prime2 = 0.00102;// [mol/mol dry gas] // Non absorbed gas: MavG = 11;// [kg/k...
6aa5f3db91d078dff0f5dff5dfda868f7d8ed3be
449d555969bfd7befe906877abab098c6e63a0e8
/3793/CH10/EX10.7/exp_10_7.sce
39e02844a252525c7980d0e5cda3fe7fe9a1bd7a
[]
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,109
sce
exp_10_7.sce
clear; clc; Sb=30; vb=11; sg=20; p=10; R=6.6; Ea=1; //generator X1=complex(0,.1); X2=complex(0,.1); X0=complex(0,.15); x1=X1*(Sb/sg); x2=X2*(Sb/sg); x0=X0*(Sb/sg); //transformer12 xt1=complex(0,.12); xt2=complex(0,.12); xt0=complex(0,.12); //transmission line vtr=22; Ztr=vtr^2/Sb; Z=complex(1,5); ...
fb093235a80ccdb841d8ae28bfe6c00ec1ae74d2
d465fcea94a1198464d7f8a912244e8a6dcf41f9
/kMatlab/kSetProfile.sci
8672b892025307587fa9977a43db13b425b645fc
[]
no_license
manasdas17/kiks-scilab
4f4064ed7619cad9e2117a6c0040a51056c938ee
37dc68914547c9d0f423008d44e973ba296de67b
refs/heads/master
2021-01-15T14:18:21.918789
2009-05-11T05:43:11
2009-05-11T05:43:11
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
998
sci
kSetProfile.sci
function [r] = kSetProfile(ref,vL,aL,vR,aR) // Ouput variables initialisation (not found in input variables) r=[]; // Number of arguments in function call [%nargout,%nargin] = argn(0) // Display mode mode(0); // Display warning for floating point exception ieee(1); //KSETPROFILE Set the speed and acceleration pr...
fac0386cb3873b172171e1b14a97e7aceb4880ab
c59576b9f96a7b26dc5bc0d52998ad818380b8cf
/test/FM08.prev.tst
c990140bdf65ebbb41809cdb41036b56ae0f313f
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/checkdig
0588535521d9106a5c777a809e50d64a9204fa3c
3570d246efd0d102f1a2652dfe752884b5d346d8
refs/heads/master
2022-02-14T07:41:43.949901
2022-01-28T15:00:07
2022-01-28T15:00:07
30,117,975
1
1
null
null
null
null
UTF-8
Scilab
false
false
216
tst
FM08.prev.tst
119317079 !OK 118629220 !OK 120882965 !OK 118551647 !OK 118972332 !OK 118501828 !OK 11901842X !OK 118802976 !OK 119344165 !OK 123089190 !OK 118503863 !OK 118503863 ?NOK 12345 ?SHORT 12345678901 ?LONG 11850A863 ?CHAR
995e4d5870ced3131d8d862671a8b2388f8ebe57
e424e40d906c9eb8f8034d6f8e2cd4647334387e
/Corto 1/screen.tst
1c1244c1ccc68e0996ea32c83c61c754a070e8dd
[]
no_license
EzioAARM/practicas-arqui-nand2tetris
ef20358ea414875178bb26b4a552552d6ccd32dc
0e1b424fa02d3cc2d79984808450224926936323
refs/heads/master
2020-04-29T19:11:03.560135
2019-03-18T18:32:32
2019-03-18T18:32:32
176,346,289
0
0
null
null
null
null
UTF-8
Scilab
false
false
573
tst
screen.tst
load LS48.hdl, output-file LS48.out, output-list D C B A a; set A 0, set B 0, set C 0, set D 0, eval, output; set A 0, set B 0, set C 0, set D 1, eval, output; set A 0, set B 0, set C 1, set D 0, eval, output; set A 0, set B 0, set C 1, set D 1, eval, output; set A 0, set B 1, set C 0, set D 0, eval, output; ...
85d5ac54e1b39c0b5ec8ccc0d7f9ae4bce0879d1
449d555969bfd7befe906877abab098c6e63a0e8
/3869/CH1/EX1.3/Ex1_3.sce
2b4195f7fa7f4dce35b2dcc7cca7407a0a3a9b07
[]
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
715
sce
Ex1_3.sce
clear // // // //Variable declaration Y=1*10**-3 //distance between slits(m) D=1 //distance between slit and screen(m) d=1*10**-3 //point distance(m) lamda=5893*10**-10 //wavelength(angston) //Calculation delta1=Y*d/D //path difference(m) Pd=2*%pi*delta1/lamda /...
a3b0cca233f041c94704f3fcd4114f15bf8e707b
449d555969bfd7befe906877abab098c6e63a0e8
/1415/CH1/EX1.2.5/ex5.sce
7323e28cea69d46175e72bb755d7bcdce2b83c13
[]
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,464
sce
ex5.sce
//Example 5 Page 64 clc clear //function for linear model function y=r1(t) y=57*t+607 endfunction //function for quadratic model function y=r2(t) y=-9*t^2+110*t+560 endfunction //function for exponential model function y=r3(t) y=608*(1.08)^t endfunction //function for logistic model function y=r4...
c1122b36dc4283e97f0563eb1a10a1592ef26161
449d555969bfd7befe906877abab098c6e63a0e8
/1415/CH1/EX1.3.5/ex5.sci
e097bdffdfa16fd7b005caac6ab3cf313d87dfd4
[]
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
755
sci
ex5.sci
//Example 6 Page 86 clc clear disp('a)') s2=530//Assigning s2 values s1=50//Assigning s1 values t2=8//Assigning t2 values t1=0//Assigning t1 values m=((s2-s1)/(t2-t1));//calculating m value disp(m,'the slope is:')//displaying m value b=s1-m*t1;//calculating b value disp(b,'the intercept value is')//display...
aebd43109467511499b6a0153bd0852fd410413b
9715cbe7e8e57bb70f628b3bd021842f99fbad75
/taller/soluciones/obtenerInversa.sci
47efffa47dc322bde1c746da330198812d5b85d8
[]
no_license
UNIVALLE-EISC/numerical-methods
a3e3f432a6dc54a5ba845789ace2bf39db7ac6fe
3ea9401e281523e15be0525bfe36e48560caf646
refs/heads/master
2021-01-10T15:22:36.080955
2018-10-02T21:37:42
2018-10-02T21:37:42
51,824,833
2
2
null
null
null
null
UTF-8
Scilab
false
false
283
sci
obtenerInversa.sci
function matrizR = obtenerInversa(matrizA) if ( size(matrizA,1) == size(matrizA,2) ) then if ( det(matrizA) ~= 0 ) then matrizR = inv(matrizA); else matrizR = %nan; end else matrizR = pinv(matrizA); end endfunction
0699b31dbc57a06c596be810f5941bae80e2c023
449d555969bfd7befe906877abab098c6e63a0e8
/167/CH2/EX2.8/ex8.sce
4d1a72ca29f5eb36bdbea0aa996d163fe1e13fcc
[]
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
ex8.sce
// example 8 // Power Needs of a Car to Climb a Hill clear clc m=1200 //mass of car in kg v1=90 //velocity of car in km/h v2=90*5/18 //velocity of car in m/s x=30 //slope of hill in degrees g=9.8 //acc. due to gravity in m/s^2 w=m*g*v2*sin(%pi*30/180) //additional power to be delivered by engine in watts prin...
9a91cb9d408fc6150b5aef85ff305a430141a115
449d555969bfd7befe906877abab098c6e63a0e8
/1760/CH4/EX4.24/EX4_24.sce
f692a3dce23992095d3be7d301464b0decc4b6a8
[]
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
184
sce
EX4_24.sce
//EXAMPLE 4-24 PG NO-240-241 I1=9; I2=2.5; I3=2; IR3=I2-I3; disp(' CURRENT is = '+string(IR3)+' A'); V=13.5; disp(' VOLTAGE is = '+string(V)+' V');
7f53f324b90afbba544f317076fdc7748103dfe4
449d555969bfd7befe906877abab098c6e63a0e8
/2855/CH12/EX12.36/Ex12_36.sce
cf5a51da6bcaf12afea46487ca1e2eccf178d1d5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
344
sce
Ex12_36.sce
//Chapter 12 //page no 530 //given clc; clear all; l=1557; //wavelength in nm c=3*10^5; //speed of light in km/s Zs=550; //in km D=0.25; //in ps/nm/km Tfwhm=sqrt(1.763^2*l^2*D*Zs/(2*%pi*c));//Soliton pulse width printf("\n Tfwhm = %0.0f ps"...
8ead602757b5a38a5f1319c8b7cb5eb125823507
449d555969bfd7befe906877abab098c6e63a0e8
/132/CH14/EX14.4/Example14_4.sce
130b6c965d99da66a2a03eb2add6b55a2e79334f
[]
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
361
sce
Example14_4.sce
//Example 14.4 //Program to Determine the AC Voltage clear; clc ; close ; //Given Circuit Data DS=5; //V/cm, Deflection Sensitivity l=10; //cm, Trace Length //Calculation Vp=DS*l; Vm=Vp/2; V=Vm/sqrt(2); //Displaying The Results in Command Window printf("\n\t The Peak AC Voltage, Vm = %f V .",Vm); printf(...
0de19a86061eceb87dc9c5edfd4847ca5b6d2ed1
449d555969bfd7befe906877abab098c6e63a0e8
/1808/CH4/EX4.11/Chapter4_Example11.sce
7df8944bfb99685aa88b23568721a23726b242a7
[]
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,316
sce
Chapter4_Example11.sce
clc clear //INPUT DATA p1=90;//pressure in bar p2=9;//pressure in bar p3=0.1;//pressure in bar T=450;//Temperature in Degree C h1=2956.6;//Enthalpy in kJ/kg S1=6.036;//Entropy in kJ/kg.K h9=2772.1;//Enthalpy in kJ/kg h6=742.6;//Enthalpy in kJ/kg S9=6.6192;//Entropy in kJ/kg.K S6=2.0941;//Entropy in kJ/kg.K ...
d3726ba434d80a2a44e7fa8aa5c2cd46efc3c6aa
449d555969bfd7befe906877abab098c6e63a0e8
/2078/CH4/EX4.10/Example4_10.sce
73586bed81d4bee8d3b0a7bc1cc9486f65b36977
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
258
sce
Example4_10.sce
//Exa 4.10 clc; clear; close; //Given data : r=1.2/2*10;//mm rdash=0.7788*r;//mm d=3.5*1000;//mm L=2*10^-7*log(d/rdash);//H/m Lav=1/3*(L+L+L);//H/m d=rdash*exp(Lav/(2*10^-7)-1/3*log(2));//mm disp(d/1000,"Spacing between adjacent conductors(m)");
554c2fd9a075b3149e2b570b42e288c6e99fc672
1b969fbb81566edd3ef2887c98b61d98b380afd4
/Rez/bivariate-lcmsr-post_mi/bfas_ac_vrt_col/~BivLCM-SR-bfas_ac_vrt_col-PLin-VLin.tst
6ee2577fb1db2ebb230fc21b8f1f87506d55572e
[]
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,909
tst
~BivLCM-SR-bfas_ac_vrt_col-PLin-VLin.tst
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 0.268162D+00 2 -0.458930D-02 0.229403D-02 3 0.925680D-01 -0.18049...
ec76719983ccb325369e768d206ce46fe3ff21c4
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.4_20.tst
7920c9dede879c0db283e34e8c1d12eb03b9efc6
[]
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
41,357
tst
bow.4_20.tst
4 8:0.05 17:0.3333333333333333 28:1.0 81:0.3333333333333333 206:0.25 268:1.0 402:1.0 488:1.0 761:1.0 762:1.0 880:1.0 990:1.0 1446:0.3333333333333333 1447:1.0 1620:1.0 2088:1.0 2330:1.0 2607:0.5 3090:1.0 3091:1.0 3735:1.0 4 8:0.1 14:0.5 31:0.42857142857142855 37:0.1111111111111111 54:0.5 58:0.09090909090909091 95:0.5 12...
53d99b084355e7fea63074180a1df65da27d5474
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH14/EX14.8/Ex14_8.sce
fe3fcd8ab3b84ca93cf4aa39b6c959ffea8b3a69
[]
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,095
sce
Ex14_8.sce
//Variable declaration: T1 = 138.0 //Temperature of oil entering the cooler (°F) T2 = 103.0 //Temperature of oil leaving the cooler (°F) t1 = 88.0 //Temperature of coolant entering the cooler (°F) t2 = 98.0 //Temperature of coolant leaving the cooler...
1fd38b69df5cca3a4741a5186c225ee5bd74d4d7
449d555969bfd7befe906877abab098c6e63a0e8
/800/CH8/EX8.3/8_3.sce
8969d3cf931ab0f00b00310e79b1f73cf3dd1c12
[]
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
271
sce
8_3.sce
//clear// clc clear exec("8.3data.sci"); deltaHRx0 = 2*H0NH3-3*H0H2-HN2; deltaCp = 2*CpNH3-3*CpH2-CpN2; deltaHRx = deltaHRx0+deltaCp*(T-TR); disp("The heat of reaction on the basis on the moles of H2 reacted is =") disp((1/3)*deltaHRx*4.184) disp("J at 423 K")
c5544d16f4184d34b61cd3ab5319fa3b5c158b27
449d555969bfd7befe906877abab098c6e63a0e8
/3831/CH16/EX16.2/Ex16_2.sce
7f40f256fc2123d717dbbc191cc6b0919e09df7e
[]
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
584
sce
Ex16_2.sce
// Example 16_2 clc;funcprot(0); // Given data T=20+273.15;// K V=25.0;// m/s k=1.40;// The specific heat ratio p=0.101;// MPa g_c=1;// The gravitational constant c_p=1.004;// kJ/kg.K R=0.286;// kJ/kg.K // Solution p_os=p*(1+((V^2/1000)/(2*g_c*c_p*T)))^(k/(k-1));// The isentropic stagnation pressure in MPa...
bd7877dfcc705974b3b69fea6b8c71904b6d3458
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects - Kopie/CONT/JQ49GPY/ATWM1_Working_Memory_MEG_JQ49GPY_Session1/ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce
199f2017261db1ee83fef2d577d849b50102c304
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
48,408
sce
ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_uncued_run1"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monit...
5d77a3393b9b41cd6e135e567d7c47d0b4419036
449d555969bfd7befe906877abab098c6e63a0e8
/2471/CH4/EX4.7/Ex4_7.sce
afe284398e3ffce5eca17a9495132cad81107320
[]
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,053
sce
Ex4_7.sce
clear ; clc; // Example 4.7 printf('Example 4.7\n\n'); printf('Page No. 99\n\n'); // (a) without insulation // given d_a = 0.150;// Diameter of pipe in m T1_a = 60;// Surface temperature in degree celcius T2_a = 10;// Ambient temperature in degree celcius //For laminar flow in pipe,h= 1.41*((T1-T2)/d)^0.2...
4b81c53cf634cbceacf9da84b829a135bda7d136
449d555969bfd7befe906877abab098c6e63a0e8
/476/CH9/EX9.22/Example_9_22.sce
40d7efb4b107e58061f7af3824a5df2a87a1794e
[]
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,025
sce
Example_9_22.sce
//A Textbook of Chemical Engineering Thermodynamics //Chapter 9 //Chemical Reaction Equilibria //Example 22 clear; clc; //Given: //Reaction: FeO(s) + CO(g) --> Fe(s) + CO2(g) K = 0.403; //equilibrium constant of reaction T = 1200; //temperature of reaction (K) To = 273; //standard temperature (K) Vo ...
10a1191c9e522090e3fddd755497c0646724bd34
449d555969bfd7befe906877abab098c6e63a0e8
/3689/CH8/EX8.3/8_3.sce
662e83fab7c2f9c3413af5cd78e6108917e5ce01
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
292
sce
8_3.sce
//// //Varialble Declaration gama = 71.99e-3 //Surface tension of water, N/m r = 1.2e-4 //Radius of hemisphere, m theta = 0.0 //Contact angle, rad //Calculations DP = 2*gama*cos(theta)/r F = DP*%pi*r**2 //Results printf("\n Force exerted by one leg %5.3e N",F)
1e725c16d3cadd25cf1f739f6afecf83fffcd139
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.2/Unix/scilab-2.2/macros/scicos/MCLOCK_f.sci
dd299383a6d0feb70c60f748aa4fa9f0b4685220
[ "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
3,050
sci
MCLOCK_f.sci
function [x,y,typ]=MCLOCK_f(job,arg1,arg2) x=[];y=[],typ=[] select job case 'plot' then standard_draw(arg1) graphics=arg1(2); [orig,sz]=graphics([1:2]) xstringb(orig(1),orig(2),['2freq clock';' f/n f'],sz(1),sz(2),'fill') case 'getinputs' then [x,y,typ]=standard_inputs(arg1) case 'getoutputs' then [x,y...
881a21fdba0e624178c1f5af0dc2aeedb39e39a6
449d555969bfd7befe906877abab098c6e63a0e8
/3506/CH9/EX9.3/Ex_9_3.sce
42f2ad35a4a2deef3bde8e4036c66c0dedf7ab96
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
959
sce
Ex_9_3.sce
//Optical Fiber communication by A selvarajan //example 9.3 //OS=Windows XP sp3 //Scilab version 5.5.1 clc; clear all; L=50//link length in Km Fiber_loss=0.2//fiber loss in dB/Km Req_Gain=Fiber_loss*L//required Gain Fn1db=5//Noise figure in dB Fn2db=5//Noise figure in dB Fn3db=5//Noise figure in dB Fn1=10^(...
20b6f21ffd6ec748f09bb77528c316d038c10612
449d555969bfd7befe906877abab098c6e63a0e8
/605/CH11/EX11.4/11_4.sce
42113cae32fc73026bcf7d6ec33a40ffc0eac564
[]
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
569
sce
11_4.sce
//for transistor A function x=mod(n) r=real(n) i=imag(n) x=sqrt(r^2+i^2) endfunction S11=0.45*exp(%i*%pi/180*150) S12=0.01*exp(-%i*%pi/180*10) S21=2.05*exp(%i*%pi/180*10) S22=0.4*exp(-%i*%pi/180*150) UA=(mod(S12)*mod(S21)*mod(S11)*mod(S22))/(1-mod(S11)^2)/(1-mod(S22)^2) disp(UA,"UA=") //for ...
529b4695d7228ce8913b72b65a60209814619a98
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/CreatingPlots/testcomet.sce
cddce60cac0582874569817b13a501454f239b7b
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
60
sce
testcomet.sce
x=[1:1000]'; clf; comet(x,[x zeros(x) -x],"colors",[2 3 5])
54630ea337fa567e3159d372c3d641ff538576a1
e84c695e8b1696d2aeef6bd6e769c7948dbeb16a
/cn/integracao.sce
dbf49ea4f1eab5ce62b30a28a6ee70bd0ebd304a
[]
no_license
xarmison/disciplinas
33bdef9ced6b7fd2da82d9929eb06a2fe5f66143
0fd6cd2241ab5108061e46f95f6db01b1ad8a350
refs/heads/master
2022-01-05T16:37:51.066680
2019-06-29T15:35:46
2019-06-29T15:35:46
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
959
sce
integracao.sce
// Integral pelo método do trapezio com n aplicações function i = trapezioDescendente(a, b, n) h = (b-a)/n; y = f(a:h:b); k = length(y); i = h/2; soma = y(1)+y(k); for j = 2:k-1 soma = soma + 2*y(j); end i = i * soma; endfunction // Integral pelo método de 1/3 de Simpson co...
aadcb468a1d7b4738a70eef4df3303430a74c933
449d555969bfd7befe906877abab098c6e63a0e8
/1946/CH2/EX2.26/Ex_2_26.sce
a6597e43f8f480d3e9a629db4915d800fcd7d9fd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
404
sce
Ex_2_26.sce
// Example 2.26:Number of guided modes clc; clear; close; n1=1.5;//Core Refractive Index d= 0.013;// Cange in core-cladding refractive index alpha=1.90;// index profile a=20;//Core radius in micro meters h=1.55;//wavelngth in micro meters Mg= round((alpha/(alpha+2))*((n1*2*%pi*a)/h)^2 *d); Vc=2.405*sqrt(1+2/...
e8ec5d61d68d2fa7ec8594b4043161934a52d35a
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/intfilt/intfilt7.sce
b78b9dd59f7a270a78fc1ddbdeda9ff6b14aa9ae
[]
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
173
sce
intfilt7.sce
//not enough i/p args a=0.6; f=intfilt(4,2); disp(f); //output //!--error 4 //Undefined variable: typ //at line 48 of function intfilt called by : //f=intfilt(4,2);
5bd37855cd9df7298e7033c8621ac1e69c94d461
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH18/EX18.4/Ex18_4.sce
9c618b52c223e2d52d2c512705e6a557a3072709
[]
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
269
sce
Ex18_4.sce
clc; //e.g 18.4; Vcc=12; Rc=330; Ib=0.3*10**-3; beta=100; //Ib=Vcc/Rb;//saturation current Rb=Vcc/Ib; disp('Kohm',Rb*10**-3,"Rb="); S=1+beta; disp(S); Ic=beta*Ib; disp('10^-3A',Ic*10**3,"Ic="); Vce=Vcc-(Ic*Rc);//cut-off voltage disp('V',Vce*1,"Vce=");
6484cbd2b68d3672aac5a8e5c531a2aa1f3b4b5a
9eee9f16f22ece682f8592130aa351a0d050f197
/atomics.tst
2611db260933d9df850f765d121e6c67e6ccb6dc
[]
no_license
ansjob/wacc
e388482b79af937a092f24011dd7c96a271101ce
aae607757954ad77614ba300ac3615dcb443ca4d
refs/heads/master
2021-01-23T18:49:28.013827
2014-01-10T16:15:57
2014-01-10T16:15:57
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
563
tst
atomics.tst
% Tests for the variable name grammar phrase(variable(Var), "x"), Var=x :: s. phrase(variable(Var), "y"), Var=y :: s. phrase(variable(Var), "angle"), Var=angle :: s. phrase(variable(Var), "skip") :: f. phrase(variable(Var), "if") :: f. phrase(variable(Var), "while") :: f. phrase(variable(Var), "do") :: f. phrase(varia...
4974d7194b27f66e0ce245172e70cf53688708c2
eba87ea88592ae455b25057043e94955762052e1
/Scenario/world3.sce
5988ed539cbc7268f367cb59bb9bd8818937ddd9
[]
no_license
milkhouse1990/RabbitMilk2018
d5f9d4d740c763f7c9003be870f7c6c240a4f6df
1dffae3c4a70ab6cb29c7c20d4fe68e898ca5adf
refs/heads/master
2018-07-14T18:24:56.563587
2018-06-01T10:37:06
2018-06-01T10:37:06
116,246,271
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,285
sce
world3.sce
//偶像舞台 world 3 Stadium scene 0 Stadium cut 0 果酱亲 请大家大声告诉我:全月球最可爱的人是? 台下 果酱果酱果酱! 果酱亲 左面的果粉! 台下 果酱果酱果酱! 果酱亲 右面的果粉! 台下 果酱果酱果酱! 果酱亲 上面的果粉! 台下 果酱果酱果酱! 果酱亲 下面的果粉! 台下 果酱果酱果酱! 果酱亲 前面的果粉! 台下 果酱果酱果酱! // 花生、奶油、果酱,你有没有看过水獭小宝贝啊(((( charascale boss_jelly -1 1 果酱亲 后面的…啊啦,你谁? 牛奶酱 终于发现我了吗… 果酱亲 你是今天的secret guest吗?好像现在不是你出场的时候啊。 牛奶酱 我只是来...
6a50ea1f54c7f9c1e195ae28a7f50c754d500ccb
449d555969bfd7befe906877abab098c6e63a0e8
/2123/CH6/EX6.11/Exa_6_11.sce
8fde1e81d16fa9585054c7c61c3456bc5f25f0a9
[]
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
408
sce
Exa_6_11.sce
//Example No. 6.11 clc; clear; close; format('v',7); //Given Data : V=400;//volt P=4;//pole f=50;//Hz r2dash=1;//ohm/phase //Neglecting r1,x1,x2 f1=400;//Hz S=4/100;//Slip t2=1.5;//ms t2=t2*10^-3;//sec t=1/f1;//sec t1=t-t2;//sec R=2;//ohm(additional resistance) R2dash=(r2dash*t1+(r2dash+R)*t2)/t;//...
7915c617bab31055902263ff4d4aef42cbb99584
449d555969bfd7befe906877abab098c6e63a0e8
/323/CH7/EX7.18/ex7_18.sci
8033410edec208f71351bec92fc6520cafbddc7a
[]
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
644
sci
ex7_18.sci
//Chapter7,Example 7.18,Pg 7.32 clc; Vrms=20 //Root mean square voltage Rl=500 //Load resistance in ohms Rf=20 //diode forward resistance Vm=sqrt(2)*Vrms printf("\n Vm=%.2f V \n",Vm) Im=Vm/(Rf+Rl) printf("\n Im=%.5f A \n",Im) Idc=2*Im/%pi printf("\n Idc=%.2f mA \n",Idc*10^3) Vdc=(2*Vm/%pi)-Idc*Rf printf("\n...
a1200ce7e9b2235a8f838318411a6159812ca5f0
449d555969bfd7befe906877abab098c6e63a0e8
/737/CH2/EX2.7/Example2_07.sce
384f58fb308b9988e6dbffa514f884e3e113b1a3
[]
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
579
sce
Example2_07.sce
//Example 2.7 page 31 //Given a DSP system with a sampling rate of 8,000 Hz and a hold circuit used //after DAC, //a. Determine the percentage of distortion at the frequency of 3,400 Hz. //b. Determine the percentage of distortion at the frequency of 1,000 Hz. clc,clear,close; fs = 8000; T = 1/fs; //part a fa ...
e91ef4a505eba92f573f3b313351e5006b1182e8
449d555969bfd7befe906877abab098c6e63a0e8
/2837/CH12/EX12.2/Ex12_2.sce
6563a56ce88e6ad13a04670c45aece275567e9eb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
371
sce
Ex12_2.sce
clc clear //Initialization of variables th=350 //F tc=150 //F od1=4.5 id1=4.026 od2=6.5 id2=4.5 k1=32 k2=0.042 //calculations Q=2*%pi*(th-tc)/(log(od1/id1) /k1 + log(od2/id2) /k2) r1=log(od1/id1) /k1 rt=log(od1/id1) /k1 + log(od2/id2) /k2 ti=th-r1/rt*(th-tc) //results printf("Heat flow = %.1f Btu/hr",Q...
edd245af53c9300974d59cef69245d643f8cc728
28a8d47c4d79b231f8bebc28925792a290f67e9f
/db/others/sql/test_create_type.tst
fb9e3d04320392d4ecd425c756035c5b10a3090c
[]
no_license
ZVlad1980/doo
a1fe7d18ccfd0acf6ced7dbb33927c86a925aae8
e81be8f524b78b9a6ec06b7f83a8c13354fc6412
refs/heads/master
2021-08-17T02:03:54.553822
2017-11-20T17:21:03
2017-11-20T17:21:03
111,440,129
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,480
tst
test_create_type.tst
PL/SQL Developer Test script 3.0 39 -- Created on 11.08.2014 by ZHURAVOV_VB declare -- Local variables here t xxdoo_db_prgType_typ := xxdoo_db_prgType_typ(p_owner => 'xxdoo', p_name => 'xxdoo_test_typ', ...
3351089e9abbddea2f6d64624199fe9c89337cb5
449d555969bfd7befe906877abab098c6e63a0e8
/226/CH8/EX8.8/example8_sce.sce
816029449e930a2824c4c5f90ede1e20191034dd
[]
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
317
sce
example8_sce.sce
//chapter 8 //example 8.8 //page 326 printf("\n") printf("given") ton=100*10^-9;Rs=600;Rb=4.7*10^3; C1=(ton/Rs)*10^12; printf(" suitable speed up capacitor is %dpF\n",C1) C1=160*10^-12;//standard value PWmin=(5*Rs*C1); SWmin=5*Rb*C1; fmax=1/(PWmin+SWmin); printf("maximum signal frequency is %dHz\n",fmax)
c0ddf7106f39dbc83b9db75246cea119659b8776
449d555969bfd7befe906877abab098c6e63a0e8
/1085/CH2/EX2.9/ex2_9.sce
f81e40fd283b74dbe4927aa465e7248a753e186a
[]
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,229
sce
ex2_9.sce
//Exam:2.9 clc; clear; close; n_1=1;//electron excited from ground state h=6.62*10^-34;//Planck constant c=3*10^8;//speed of light E_o=8.825*10^-12;//permittivity of free space e=1.6*10^-19;//electron charge(in C) m=9.11*10^-31;//mass of electron(in Kg) E_1=10.2;//energy excites the hydrogen from ground level...
f0f38749e694d206398b4b1573286493fd2c8a64
449d555969bfd7befe906877abab098c6e63a0e8
/3784/CH4/EX4.29/Ex4_29.sce
f597036e706e95edd6964ebcbcc959eba04b8a2d
[]
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
644
sce
Ex4_29.sce
clc //Variable Initialisation Ra=0.08//Armature resistance in ohm Rb=1.5 Rf=12 N=500//Rated Speed of Motor in rpm //Solution If0=poly(0,'If0') Eb0=poly(0,'Eb0') If=[4.16,6.2,8.33,10.5,12.5,14.6,16.6,18.8,20] Eb=[41.6,61.2,75,85,92,96.6,101,105,125] W=2*%pi*N/60 Ia=((Rb+Rf)/Rb)*If0 K=Eb0*(1/W) If1=12.6 ...
8feddcd917ff56c2060b1c32d8ba6bf796c412e6
449d555969bfd7befe906877abab098c6e63a0e8
/911/CH2/EX2.7/ex_2_7.sce
fbbbbc8f8562d530f501c3ea035ed250baa10b12
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
261
sce
ex_2_7.sce
// example 2.7// clc //clears the screen// clear //clears all existing variables// a=8; //given numbers// b=185; c=b-a; d=dec2bin(c,12) disp(c,'subtraction of given numbers in decimal form = ') disp(d,'subtraction of given numbers in binary form = ')
b5a8df5c59ea6cf9dfa98a4a6769171335d79a2c
449d555969bfd7befe906877abab098c6e63a0e8
/3772/CH16/EX16.8/Ex16_8.sce
c5138b52e5c004bcf4a68b6117a8ed150f0a0870
[]
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
750
sce
Ex16_8.sce
// Problem 16.8,Page no.371 clc;clear; close; D=1.5 //cm //Diameter of boiler rho=75 //% //Efficiency of joint sigma_t=85 //MPa //stress in tension sigma_s=70 //MPa //stress in shear P=1 //MPa //Steam Pressure //Notification has been changed //Calculation t=P*10**6*D*(2*sigma_t*10**6*rho*10**-2)**-1*100 //Adopt 12...
81733d30e3be32567f412313f5e2f90aaadf4ae9
449d555969bfd7befe906877abab098c6e63a0e8
/1535/CH8/EX8.8/Ch08Ex8.sci
f30ecd927d59f1352399e03bc533d15af5bcaab1
[]
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,174
sci
Ch08Ex8.sci
// Scilab Code Ex8.8: Page-174 (2010) c = 1; // For simplicity assume speed of light to be unity, m/s me = 1; // For simplicity assume mass of electron to be unity, kg tau = 2.3e-006; // Average lifetime of mu-meson in rest frame, s t = 6.9e-006; // Average lifetime of mu-meson in laboratory frame, s /...
959ca79d84ea65d6371fa97d71766b0a19062cdb
cc79f7493e50b31f04732c9577175912b2ec2604
/adamsBashforth.sci
f894c260e9b21a79db0e4328760e21b77bbca200
[]
no_license
WhiskyDelta/ScilabOrbits
815c596b2c3ba382b312eb95e5b58990b0501d88
74881418c75097fa5d86c0fcfacecbe8d93cf14b
refs/heads/master
2016-08-06T21:00:52.285372
2015-07-31T18:32:38
2015-07-31T18:32:38
39,731,729
3
0
null
null
null
null
UTF-8
Scilab
false
false
1,887
sci
adamsBashforth.sci
function [y,ydot]=adamsBashforth(s,oldY,oldYdot,f,h) y = list(); ydot = list(); hasEnoughSteps = size(oldY) >= s; if hasEnoughSteps then for i=1:s-1 y(i+1)=oldY(i); ydot(i+1) = oldYdot(i) end end if s == 4 & hasEnoughSteps then ...
552ea01a5f0d89c3b3f193f50d57f287f8f5a9a6
b16d10d9a8641b0ec6ab426835e154584cf6dad2
/model/hyckpp.tst
42e929e1929e1341bd0a4883bb640403c6af05de
[]
no_license
Racha711/GCAP2
8ef3bfcb0b772c06f033ab7830f6e5e792d68bb9
6a4a6686dede2ce07cfb6f927a21f2b4587bfbd3
refs/heads/main
2023-05-25T17:55:28.542809
2021-04-25T18:02:02
2021-04-25T18:02:02
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
27,018
tst
hyckpp.tst
subroutine OCEANS c c --- ------------------------------ c --- MICOM-based hybrid ocean model c c --- v e r s i o n 0.9 c --- ------------------------------ c USE FLUXES, only : e0,prec,eprec,evapor,flowo,eflowo,dmua,dmva . ,erunosi,runosi,srunosi,runpsi,srunpsi,dmui,dmvi,dmsi,dhsi,dssi . ,...
7f2e36c7c7fa3e57f14efbc16227cb4ebcfbf3da
7e1b3cc24688270b39c0e2f21e0434ea9c80382f
/altewelt.sce
c990739a967fb454d65e25fdc4ef065618d79129
[ "MIT" ]
permissive
Vladimir-Trufanov/RobotWinCE
7d5e47fba4c268204dfe9c5537d0764198de972e
39756f68a6d8de52c19e80e6def4ee3a71cefc75
refs/heads/main
2023-04-06T13:06:46.586022
2021-04-08T17:15:19
2021-04-08T17:15:19
343,203,217
0
0
null
null
null
null
UTF-8
Scilab
false
false
85,637
sce
altewelt.sce
:raum1 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp figur.bmp hinter.bmp hinter.bmp aetz.bmp wand2.bmp schl6.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bm...
34bcf8eabab8ef8bdaec378a55386b0f9fdc8b66
726961a3412b6d2fda7c781172773be5e27ac97a
/jflap-grades/tests/q04b.tst
69c4fb3b4bf72973fa23081ef14e1089b4f0bf2c
[]
no_license
ailton07/jflap-grades-19-2
0546deb482e7f8e003591351191fa649d62fd405
ff58118d31aa30a0f56cae8e5f0186d44c1b72a8
refs/heads/master
2020-09-16T12:49:31.560841
2019-11-25T01:03:19
2019-11-25T01:03:19
223,774,968
0
0
null
null
null
null
UTF-8
Scilab
false
false
85
tst
q04b.tst
0 0.20 ababababab 1 aababbab 1 abbabbabaa 1 ab 1 abababbab 0 abb 0 aabaa 0 bbababb 0
7a15e3db4a6c07efbeba905ee1c407150f46c571
449d555969bfd7befe906877abab098c6e63a0e8
/389/CH9/EX9.11/Example9_11.sce
486a3afb7497ee92c26d8d6ce1e1a8a80c45a803
[]
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
5,138
sce
Example9_11.sce
clear; clc; // Illustration 9.11 // Page: 423 printf('Illustration 9.11 - Page: 423\n\n'); // solution //****Data****// // a:ethanol b:water zF = 0.3; xa = 0.3;// [mole fraction of ethanol] Temp = 78.2;// [OC] Ao = 0.0462;// [Area of perforations,square m] t = 0.450;// [m] //******// Ma = 46.05;...
2f9ad7d839519c3fe1e15c5082d6557848e6e8a9
449d555969bfd7befe906877abab098c6e63a0e8
/2561/CH14/EX14.5/Ex14_5.sce
a4c7213cc1a50d79043fada535826db4836b45ff
[]
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
405
sce
Ex14_5.sce
//Ex14_5 clc n=12 disp("n= "+string(n))// Number of bits VFS=50 disp("VFS= "+string(VFS)+" volts") // Maximum value of analog input voltage S=VFS/(2^n) disp("S=VFS/(2^n)= "+string(S)+" volts") // Maximum quantization error Resolution=(100/2^(n))//Formulae disp("Resolution=(100/2^(n))= -"+string(Resolution)+" p...
9724955b2f71a10625c87ae9718c43c4e8b575cd
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Slide&Bounce Tracking.sce
4506b8cb3e1df270bc1273c1655c4c116048cf8a
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
73,265
sce
Slide&Bounce Tracking.sce
Name=Slide&Bounce Tracking PlayerCharacters=Ascended Tracking BotCharacters=ROT.rot IsChallenge=true Timelimit=60.0 PlayerProfile=Ascended Tracking AddedBots=ROT.rot;ROT.rot PlayerMaxLives=0 BotMaxLives=10;10 PlayerTeam=1 BotTeams=2;2 MapName=1A.map MapScale=3.0 BlockProjectilePredictors=true BlockCheats=...
a845eea24de5aec3f02d3c22bc5a3b83c79801be
449d555969bfd7befe906877abab098c6e63a0e8
/24/CH17/EX17.7/Example17_7.sce
3cafb6b5113da10bc8f8e352076adfad0c2472d7
[]
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
533
sce
Example17_7.sce
//Given that L = 1.2 //in meter u = 1.6*10^-3 //in kg/m f = 120 //in Hz g = 9.8 //in m/s^2 //Sample Problem 17-7a printf("**Sample Problem 17-7a**\n") n = 4 //T = m*g //v = sqrt(m*g/u) //f = n*v/(2*L) m = (2*L*f)^2*u/(g*n^2) printf("The value of m should be %fkg\n", m) //Sample Problem 17-7b print...
a04c5d732f00d27ef96bcee2b4eff1da225e890e
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH4/EX4.61/Ex4_61.sce
407a2e27123f9d9bf6193b830a6a6b809098fcab
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,059
sce
Ex4_61.sce
clc; n=800; // speed at which magnetization curve is given // case a v=600; // dc voltage source ra=0.3; // armature resistance rf=0.25; // field resistance T=300; // given torque VT=[ 200 375 443 485 510 518]; // terminal voltage IF=[ 15 30 45 60 75 90 ]; // field current EA1=VT+IF*ra; // generated EMF EA2=v...
d03e47a664447c998ee395fcf346b9a1bad72860
c5a5b51d0d9d4bb57cc4508c2ffc453ccf47aeba
/finddelay/finddelay.sci
5ba1543bd73e5fdd190a9737b17cf5dd169c8826
[]
no_license
PolaPriyanka/ScilabCommunication
2adca45f772b2ca6a602e10e4801576eeb0da33d
5b5c704e591f20be6944800a1b4b25cf06f56592
refs/heads/master
2021-01-01T18:22:48.761766
2015-12-16T07:26:29
2015-12-16T07:26:29
42,721,104
1
0
null
null
null
null
UTF-8
Scilab
false
false
5,709
sci
finddelay.sci
function d = finddelay(x,y,varargin) // FINDDELAY returns the estimated delay between two input signals using crosscorrelation. // If signals are periodic, delay with least absolute value is returned. // D = FINDDELAY(X,Y), returns estimated Delay D between X // and Y. D is positive implies Y is delayed with r...
179260ef024bf1d881579364001c8f522e1baccf
449d555969bfd7befe906877abab098c6e63a0e8
/599/CH5/EX5.9/example5_9.sce
382d17f4541abfe60eb65c3d229f9177bc2f96a4
[]
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,827
sce
example5_9.sce
// Calculation of relative humidity ,humid volume enthalpy and heat required if 100m^3 of this air is heated to 110 degree clear; clc; printf("\t Example 5.9\n"); //part(i) y_bar=.03; // humidity inkg water /kg dry air pt=760; //total pressure in pascal pa2=118; ...
d1b649f2af3b35362abe3eb12d983bab23231c3c
1b969fbb81566edd3ef2887c98b61d98b380afd4
/Rez/bivariate-lcmsr-post_mi/bfas_ea_usi_d/~BivLCM-SR-bfas_ea_usi_d-PLin-VLin.tst
528ccf9048e597b4ba1c94828300a55960a519b2
[]
no_license
psdlab/life-in-time-values-and-personality
35fbf5bbe4edd54b429a934caf289fbb0edfefee
7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e
refs/heads/master
2020-03-24T22:08:27.964205
2019-03-04T17:03:26
2019-03-04T17:03:26
143,070,821
1
0
null
null
null
null
UTF-8
Scilab
false
false
11,974
tst
~BivLCM-SR-bfas_ea_usi_d-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.409711D+00 ...
79438890639f83c04af8b77d50ab6050819a59a5
449d555969bfd7befe906877abab098c6e63a0e8
/1073/CH5/EX5.14/5_14.sce
2ac1afc448d7999fff1b8baf6968e8a1ab15701b
[]
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
3,103
sce
5_14.sce
clc clear //Example 5.14 //Properties of crude oil: Cpc=1.986 ; //[kJ/(kg.K)] mu1=2.9*10^-3; //[N.s/sq m] k1=0.136 ; //[W/m.K] rho1=824 ; //[kg/m^3] //Properties of bottom product: Cp2=2.202 ; //[kJ/kg.K] rho2=867 ; ...
805a2c90381ee75d9bcef854e20dff7d2fcbb434
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/rcosdesign/rcosdesign11.sce
07ec422b8f83be592e65e936d5a7a6ec582af8eb
[]
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
321
sce
rcosdesign11.sce
//check o/p when i/p arg sps is of type char beta=0.3; span=3; sps='a'; h=rcosdesign(beta,span,sps); //output // !--error 10000 //input variable should be of type double //at line 10 of function checkIpValidity called by : //at line 34 of function rcosdesign called by : //h=rcosdesign(beta,span,sps); //...
458d184d74d577b10ffccac6a334d983d39cde15
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH17/EX17.1/example_17_1.sce
ddd9ff8756c9b307b0779f56815f72fa1a451e99
[]
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
346
sce
example_17_1.sce
clear; clc; disp("--------------Example 17.1---------------") frame_rate=8000; // frames per sec frame=9*(1*90); // each frame is made of 9 by (1x90) bytes bits=8; // 1byte = 8 bits STS1_data_rate=frame_rate*frame*bits; // formula printf("The STS-1 data rate is %5.3f Mbps.",STS1_data_rate*10^-6); // display resu...
0c579cf637a10c9614a99c444723e64edd86a1d3
449d555969bfd7befe906877abab098c6e63a0e8
/2309/CH3/EX3.a.1/A_Ex3_1.sce
4d7907952a85ec49aeda60d2286ad0b5a8c65baa
[]
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
839
sce
A_Ex3_1.sce
// Chapter 3 Additional Example 1 //============================================================================== clc; clear; //input data n1 = 1.5; // Refractive index of core NA = 0.26; // Numerical aperture d = 100*10^-6 // core diameter lamda = 10^-6; // wavelength in ...
f411ad68357e2de6721d6a553fa54ff2b34fd48b
449d555969bfd7befe906877abab098c6e63a0e8
/1523/CH7/EX7.8/ex7_8.sce
fafd8cb12a63893a866064534cafab7f28528797
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
425
sce
ex7_8.sce
// Graph Theory : example 7.8 :(pg 7.19 & 7.20) //Complete Incidence Matrix Aa printf("\nAa="); disp(Aa=[1 0 -1 1;-1 1 0 0;0 -1 1 -1]); // Reduced Incidence matrix A (by eliminating last row from Aa) A=[1 0 -1 1;-1 1 0 0]; printf("\nA="); disp(A=[1 0 -1 1;-1 1 0 0]); printf("\nNumber of possible trees=|A*A^T|"...
c8a6e938642059d65f8dd2ec36da0539c4b3c9d7
58f8869b2dcd9296bbe82d9923d1d7d801937351
/2 Error Analysis/Q7.sce
630f1e65bb846b59c8c762766a014658030df1ec
[ "MIT" ]
permissive
keivalya/2ME01
f325d38ea7adace9a10bc3d83e7868d59dbc4066
3147e0d7319ddeb6e79fde5d0851dcc423a7e23d
refs/heads/master
2023-02-10T20:15:29.593282
2021-01-09T02:39:20
2021-01-09T02:39:20
282,954,965
0
0
MIT
2020-10-04T02:22:40
2020-07-27T16:33:06
Scilab
UTF-8
Scilab
false
false
706
sce
Q7.sce
//Documentation by Keivalya Pandya //sum1 -> Sum of series 1 //et1 -> True Error in series 1 //ea1 -> Approx. Error in series 1 // //sum2 -> Sum of series 2 //et2 -> True Error in series 2 //ea2 -> Approx. Error in series 2 function [sum1,et1,ea1,sum2,et2,ea2]=mine2(x,trueval) term1=1;term2=1;sum1o=term1;sum2o=ter...
de5c8790f169411cadfc09ee770c3fa29fce18b8
553cd3b112df312e6cf625dd799b3b052e2d4e20
/scilab/sin_440hz/sin_8k.sci
6ac593ae127a5b1ee4350e3e90c9a04650d57261
[]
no_license
freecores/i2s_to_wb
c914b6d5c19a1e4424853a24b832b9fa571fbf07
0063db8729c491a35e5aa79994ce7fa7ce573369
refs/heads/master
2020-04-01T23:01:54.879602
2011-03-29T01:37:12
2011-03-29T01:37:12
21,917,442
1
0
null
null
null
null
UTF-8
Scilab
false
false
554
sci
sin_8k.sci
// // get one cycle of 440khz data for rom; // Fs = 8192; f = 440; samples_per_wavelength = ceil( (1/f)/(1/Fs) ); N = 0 : samples_per_wavelength; x = 2 * %pi * (f / Fs) * N; y = sin(x); // plot(x, y); y_transpose = y'; wn = y_transpose / max(abs(y_transpose)); wn = wn * ((2^32) / 2); ...
adb515b843c8fd8632d9e3fa5f3b37619419883e
449d555969bfd7befe906877abab098c6e63a0e8
/3116/CH18/EX18.3/Ex18_3.sce
bc8c690f9473acd3d25d31c291e1ca9fd34e13ec
[]
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
645
sce
Ex18_3.sce
//page no 692 clc // Given that Ms_Fe=5.25*10^5; //Required saturation Magnetisation in A/m b_m=9.27*10^-24; //Bohr Magneton in ampere*m^2 a=0.839*10^-9; //a is edge length in m M=5*10^5; //From previous question result printf(" Design Example 18.1\n"); y=poly([0],'y') // Defining X nb=Ms_Fe*a^3/b_m; //...
541b87dd4a0a1201c4274efea27a2d1a5e73a44e
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH22/EX22.17/Ex22_17.sce
c6ad951f2639e0c9ae8a335ceaf145bfdbc64a79
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
292
sce
Ex22_17.sce
clc; //e.g 22.17 vin=2*10**-3; gm=5500*10**-6; R1=1*10**6; R2=1*10**6; RS=5000; RL=2000; (1/gm); AV=RS/(RS+(1/gm)); disp(AV); Ri=(R1*R2)/(R1+R2); disp('Mohm',Ri*10**-6,"Ri="); Ro=(RS/gm)/(RS+1/gm); disp('ohm',Ro*1,"Ro="); Vo=(RL/(RL+Ro))*(AV*vin); disp('mV',Vo*10**3,"Vo=");
0b05901d83d111b8907eda66f25837a830cd17d3
449d555969bfd7befe906877abab098c6e63a0e8
/848/CH3/EX3.7/Example3_7.sce
1a34c568fd69411104ac769ca6f856b64c82fff0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
435
sce
Example3_7.sce
//clear// //Caption:Program to Find out the Material Dispersion //Example3.7 //page107 clear; clc; Lamda = 800e-09;//Wavelength in meter sigma_Lamda_LED = 40e-09;//spectral width in meters pulse_spread = 4.4e-12;//pulse spread in sec/meter mat_dispersion = pulse_spread/sigma_Lamda_LED disp(mat_dispersion,'ma...
3e7f89fe7ece2e87b26bea181dbc499cabcbf829
449d555969bfd7befe906877abab098c6e63a0e8
/1808/CH7/EX7.18/Chapter7_Exampl18.sce
1f821f3d087a79e7ef2c4fd2418b57044c3819ce
[]
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,003
sce
Chapter7_Exampl18.sce
clc clear //INPUT DATA V1=100;//volue in mm^3/min t1=6;//dry bulb temperature in Degree c t11=3;//dry bulb temperature in Degree c Rc=40;//Capacity of the coil in TR mw=40;//Amount of water vapour added in kg d.a./min pva=5.68;//saturation pressure p=760;//pressure in mm of Hg Ra=287.3;//gas constant cp=1.00...
751cb4933d77d48b81f1b9ccb9e2886d628f42d9
c7ae4be7c00d277ebf8f41b417dac91c03fea434
/optimization/gradient_descent_conjugate/optim_gfo.sce
940927965074964ee4f04b4727db7a243c81baab
[]
no_license
xsher/data_science
dfa829f2cbb68822f356afcf32dbd967b63675b8
bf4e619f361d27c635a2c99e903df6b25e071f90
refs/heads/master
2020-09-09T17:59:41.318865
2019-12-03T09:26:50
2019-12-03T09:26:50
221,519,239
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,993
sce
optim_gfo.sce
// load the cost functions exec('/Users/sherly/Documents/EIT-UNS/uns/S2P1/optim_fonctions.sci', -1) function [u0, couts]=pasfixe(EPSG, kmax, rho0, u0, cost) if cost == "costR" then cost_fn = costR elseif cost == "cost1" then cost_fn = cost1 elseif cost == "cost2" then cost_fn = cost...
8b89cf002e78c57ba685ea40257345788092072e
449d555969bfd7befe906877abab098c6e63a0e8
/2780/CH10/EX10.5/Ex10_5.sce
0d5a6fe82d152d5e0fd82b579fc84fa4406a7c65
[]
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
306
sce
Ex10_5.sce
clc //to calculate number of ampere turns l=0.5 //length in m mu=6.5*10^-3 //permeability of iron in henry/m A=2*10^-4 //area of cross-section in m^-4 R=l/(mu*A) //reluctance in A-turns/weber flux=4*10^-4 //in weber mmf=flux*R disp("the number of ampere turns is mmf="+string(mmf)+"ampere-turns")