Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 2

Sci_R is a toolbox that user can use the Rs statistical functions in scilab environment.Sci_R provides a comprehensive set of statistical tables.Include cumulative distribution function,probability density function and quantile function.

4.5
   
  1 review  |  2 users  |  31,716 lines of code  |  0 current contributors  |  Analyzed about 6 hours ago
 
 

SciSpeech provides various analysis functions including time analysis, frequency analysis, cepstral analysis and WRLS-VFF analysis, which provides great convenience for the both developers and users, while the famous software MATLAB voicebox toolbox only offers few speech analysis functions, ... [More]  SciSpeech use the PSOLA algorithm to supply the prosodics adjusting function in the module of speech synthesis. And this complex function is open sourced so that it can be easily applied and modified in a speech synthesis system.  SciSpeech also includes a practical speech recognition system, which can recognize speech command within a short time and the telephone number recognition ratio is very good. [Less]

0
 
  0 reviews  |  1 user  |  0 current contributors  |  Analyzed 7 days ago
 
 

Java rendering library based on JOGL This Java API allows 2-D or 3-D plotting from simple 2-D graph to complex scenes. . While this library has been developed in the context of Scilab, it can be used in any context.

0
 
  0 reviews  |  1 user  |  10,986 lines of code  |  6 current contributors  |  Analyzed 1 day ago
 
 
Compare

This is a Biomechanical ToolKit named BTK. BTK is an open-source and cross-platform library for biomechanical analysis. BTK read and write acquisition files and can modify them. All these operations can be done by the use of the C++ API or by the wrappers included (Matlab Octave and Scilab).

0
 
  0 reviews  |  1 user  |  156,118 lines of code  |  2 current contributors  |  Analyzed 5 days ago
 
 

FANN is a C library which allows to build neural networks. This library is now interfaced to Scilab, a Matlab like environnement.

0
 
  0 reviews  |  0 users  |  16,665 lines of code  |  1 current contributor  |  Analyzed 4 days ago
 
 
Compare

Because now there are few chinese scilab Ducument. so I want to translate the English Scilab manual to Simpled Chinese scilab manul

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 8 days ago
 
 

Documentation in Test Form

5.0
 
  0 reviews  |  0 users  |  13,649 lines of code  |  1 current contributor  |  Analyzed 12 months ago
 
 

A web-based platform for collaborative research and high-performance computing interface, a tool for implementation of virtual labs.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

GroovyLab: Groovy classes for math engineeringGroovyLab is a collection of Groovy classes to provide matlab-like syntax and basic features (linear algebra, 2D/3D plots). It is based on jmathplot and jmatharray libs: Matrix class Plot class Example Groovy codeBasically, it allows to create ... [More] scripts with matlab-like syntax for Matrices and plots: import static org.math.array.Matrix.* import static org.math.plot.Plot.* def A = rand(10,3) // random Matrix of 10 rows and 3 columns def B = fill(10,3,1.0) // one Matrix of 10 rows and 3 columns def C = A + B // support for matrix addition with "+" or "-" def D = A - 2.0 // support for number addition with "+" or "-" def E = A * B // support for matrix multiplication or division def F = rand(3,3) def G = F**(-1) // support for matrix power (with integers only) println A // display Matrix content plot("A",A,"SCATTER") // plot Matrix values as ScatterPlot def M = rand(5,5) + id(5) //Eigenvalues decomposition println "M=\n" + M println "V=\n" + V(M) println "D=\n" + D(M) println "M~\n" + (V(M) * D(M) * V(M)**(-1)) ... def A = rand(10,3) println A plot("A",A,"SCATTER") def B = rand(10,3) println B plot("B",B,"LINE") ...Use itTo use it, just put Matrix.groovy or Plot.groovy groovy classes in your Groovy classpath, as well as jmathplot.jar and jmatharray.jar. MatrixFollowing access (i.e. set/get) are possible: x = M[1][2] x = M[-1][2] // where -1 stands for last row index x = M[1][-2] // where -2 stands for last column index x = M[-1][2] // where -1 stands for last row index x = M[-1][-2] // where -1 stands for last row index, -2 stands for last column index X = M[1..4][2..3] X = M[4..1][2..3] // thus reverting rows order X = M[1..-1][-2..3] X = diagonal(Matrix) // get diagonal of Matrix, alias to diag(Matrix) X = diagonal(Matrix, int order) // get order diagonal of Matrix, alias to diag(Matrix, int) M[1][2] = x // set x value at first row, second column M[-1][2] = x // set x value at last row, second column M[1..2][2..5] = [[1.1,1.2,1.3,1.4],[2.1,2.2,2.3,2.4]] M[2..1][2..5] = [[1.1,1.2,1.3,1.4],[2.1,2.2,2.3,2.4]] // thus reverting rows orderFollowing operators are available: Matrix + Matrix Matrix + Number Matrix - Matrix Matrix - Number Matrix * Matrix Matrix * Number Matrix / Matrix Matrix / Number Matrix ** int"Following static operations are available: sum(Matrix) prod(Matrix) cumsum(Matrix) cumprod(Matrix) inverse(Matrix) solve(Matrix A, Matrix b) //returns X Matrix verifying A*X = b. if rank(Matrix) trace(Matrix) det(Matrix) cond(Matrix) norm1(Matrix) norm2(Matrix) normF(Matrix) normInf(Matrix)Following static Linear Algebra (from JAMA) are available: Cholesky decomposition: Cholesky_L(Matrix) Cholesky_SPD(Matrix) QR decomposition: QR_Q(Matrix) QR_H(Matrix) QR_R(Matrix) LU decomposition: LU_L(Matrix) LU_U(Matrix) LU_P(Matrix) Singular values decomposition: Singular_S(Matrix) Singular_U(Matrix) Singular_V(Matrix) Singular_values(Matrix) Eigenvalues decomposition: Eigen_D(Matrix) Eigen_V(Matrix)Following static constructors are available: matrix(double[][]) matrix(double[]) // one row Matrix constructor matrix(ArrayList) // compatible with ArrayList of Numbers or ArrayList of ArrayList of Numbers identity(int n) // identity Matrix of size n*n alias to id(int n) diagonal(int, double) // diagonal Matrix of constant values, alias to diag(int, double) diagonal(double[]) // diagonal Matrix with given diagonal values, alias to diag(double[]) one(int, int) // constant Matrix of given size, filled with 1.0 values fill(int, int, double) // constant Matrix of given size, filled with given values increment(int, int, double begin, double pitch) // Matrix of given size with row incrementing values from given beginning value wsith given pitch increment increment(int, int, double[] begin, double[] pitch) // Matrix of given size with row incrementing values from given beginning values wsith given pitchs incrementFollowing statistic sample constructors are available (random generator from RngPack): random(int, int) // independant random values (between 0.0 and 1.0) Matrix of given size, alias to rand(int, int) random(int, int, double min, double max) // independant random values (between min and max) Matrix of given size, alias to rand(int, int, double min, double max) randomUniform(int m, int n, double min, double max) randomDirac(int m, int n, double[] values, double[] prob) randomNormal(int m, int n, double mu, double sigma) randomChi2(int m, int n, int d) randomLogNormal(int m, int n, double mu, double sigma) randomExponential(int m, int n, double lambda) randomTriangular(int m, int n, double min, double max) randomTriangular(int m, int n, double min, double med, double max) randomBeta(int m, int n, double a, double b) randomCauchy(int m, int n, double mu, double sigma) randomWeibull(int m, int n, double lambda, double c) Following static sort/find methods are available: sort(Matrix) sort(Matrix, int columnIndex) min(Matrix) max(Matrix)Following static transformation methods are available: transpose(Matrix) // alias to t(Matrix) resize(Matrix, int, int) rowsMatrix >> Matrix // appends rowsMatrix to Matrix at last position (i.e. add last row) columnsMatrix >>> Matrix // appends columnsMatrix to Matrix at last position (i.e. add last column) Matrix << rowsMatrix // appends rowsMatrix to Matrix at first position (i.e. add first row)Following static statistic sample methods are available: mean(Matrix) variance(Matrix) covariance(Matrix,Matrix) correlation(Matrix,Matrix) [Less]

0
 
  0 reviews  |  0 users  |  6,641 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

Projekty które wykonuje w szkole

0
 
  0 reviews  |  0 users  |  73 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.