Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.477.276 Times

R Function freeware
Filter: All | Freeware | Demo
 

R Function

< 1 2 3 4 5 
Added: May 10, 2013 | Visits: 358

Timeit function This script contains a function to use the timeit module from a script, creating a nice overview of the runtimes of one or more code snippets. All command line flags that the timeit module accepts can be used. The output can easily be customized. Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (49): Timeit function Download

Added: May 10, 2013 | Visits: 393

Convenience 'timeit' function This function makes it easier to use the timeit module from the interactive interpreter. You should just specify function with (optional) arguments to run, optional number of runs, and optional name of module (which if not specified defaults to the name of the function). Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (52): Convenience 'timeit' function Download

Added: May 10, 2013 | Visits: 459

Debug statements include function name This script allows a user to place debug messages, error messages and standard messages throughout a program. The function name and line number will be added to each debug and error message before it is printed out. In addition, each of these messages can be passed to multiple handler objects... Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (54): Debug statements include function name Download

Added: May 10, 2013 | Visits: 394

Number Format function This function takes a number (integer or float) and returns a string with the integer portion grouped by thousands and the decimal portion rounded or padded to given number of decimal places. Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (57): Number Format function Download

Added: April 09, 2013 | Visits: 477

Function To Generate Truth Table This function very efficiently generates a Truth Table matrix of arbitrary, user specified dimension.The order of the Truth Table is limited only by the user's available system memory. The function is highly efficient, written using only three variables in 15 lines of MATLAB code.While this is... Platforms: Matlab

License: Freeware Size: 10 KB Download (45): Function To Generate Truth Table Download

Added: May 02, 2013 | Visits: 457

Autocorrelation function of m-sequence This m-file finds the periodic ACF of all the m-sequences of length 31.In this program m-sequences of length 31 are generated and its periodic Autocorrelation function is plotted. Platforms: Matlab

License: Freeware Size: 10 KB Download (43): Autocorrelation function of m-sequence Download

Added: April 08, 2013 | Visits: 754

probability distribution function (normal distribution) This function calculates the probability under the normal distribution curve, plots the graph and the area calculated.Normaldistribution calculating the area under a normal distribution curve from -ve infinity upto point x. Input: x : point on the normal distribution curve mean : mean of the... Platforms: Matlab

License: Freeware Size: 10 KB Download (51): probability distribution function (normal distribution) Download

Added: September 17, 2013 | Visits: 928

Autocorrelation and Crosscorrelation function of gold sequence This m-file finds and plots the autocorrelation and crosscorrelation function(ACF and CCF) of generated Gold codes of length 31.Crosscorrelations are three valued. Platforms: Matlab


Added: August 09, 2013 | Visits: 638

ambiguity function plot Everything was started some years ago - and the previous version was born 10x to dr. Ilia Iliev, technical University - Sofia and the modification of function "xcorr.m" by R. Losada included in the MATLAB 6.15 package. Unfortunately, I've erased the previous version by mistake so I am uploading... Platforms: Matlab

License: Freeware Size: 10 KB Download (52): ambiguity function plot Download

Added: March 25, 2013 | Visits: 511

Global Moupfouma rain CDF prediction model function [P R]=Global_Moupfouma(Rzz1,ClimZone)Function implementing the Global Moupfouma model,As per Electronic Letters paper "Point Rainfall rate cumulativedistribution valid at various locations"F. Moupfouma and L. Martin, EL, Vol.29, No.17, Aug. 1993InputsRzz1: Rain rate value exceeded 0.01%... Platforms: Matlab

License: Freeware Size: 10 KB Download (50): Global Moupfouma rain CDF prediction model Download

Added: May 20, 2013 | Visits: 581

Function for finding peaks from data array I was not able to get the peaks from my experimentally obtained data because of its random nature. As a result the findpeaks() defined in Matlab library was not giving results as expected. Hence I made a code which will help findpeaks() help detect the peaks more accurately.It basically averages... Platforms: Matlab

License: Freeware Size: 10 KB Download (45): Function for finding peaks from data array Download

entropy, joint entropy and conditional entropy function for n variables for entropyH = entropy(S)this command will evaluate the entropy of S, S should be row matrixH = entropy([X;Y;Z])this command will find the joint entropy for the 3 variablesH = entropy([X,Y],[Z,W])this will find H(X,Y/Z,W).. you can use it for any combination of joint entropiesPlease validate this... Platforms: Matlab


Added: September 07, 2013 | Visits: 466

Multiple-root polynomial solved by partial fraction expansion A given polynomial p(x) is transformed into a rational function r(x). The poles and residues of the derived rational function are found to be equivalent to the roots and multiplicities of the original polynomial. p(x) = Given polynomial = PROD[k=1:K]{(x - z_k)^m_k} d(x) = (d/dx)p(x) g(x) =... Platforms: Matlab

License: Freeware Size: 10 KB Download (45): Multiple-root polynomial solved by partial fraction expansion Download

Added: June 13, 2013 | Visits: 453

Function to generate Walsh Code This function generates Walsh Codes. The difference between this function and other functions available to generate walsh code is :1. you can call this function directly in your script, you will have to pass only the value of 'a' (length of code is 2 ^ a)2. this function can return you both the... Platforms: Matlab

License: Freeware Size: 10 KB Download (51): Function to generate Walsh Code Download

Function to generate Timeseries file to use for Moore FSM coverage analysis This function generates a Timeseries file which can be used for Moore FSM coverage analysis.The file is generated in the working directory and can be opened into the Workspace for use by MATLAB, or read directly into Simulink using the 'Import Data From File' source block.The generated Timeseries... Platforms: Matlab


Added: April 11, 2013 | Visits: 464

Eigen Function of the Laplacian The different low dimensional embeddings are an orthonormal coordinate system generated from a1. Diffusion process defined on the data2 . Normalized Laplace Beltrami operator3. Normalized Focker Plank operatorThis is a nonlinear dimension reduction technique using the concepts of manifold... Platforms: Matlab

License: Freeware Size: 890.88 KB Download (49): Eigen Function of the Laplacian Download

Added: April 10, 2013 | Visits: 364

String Letter Counter Function Statement: strLetterCounter('string')....where, 'string' is an input string containing alphabet or numbers.Ex: string='aaaaaaaabbbbbbccd'Statement: strLetterCounter(string)Output: '8a,6b,2c,1d'Note: This function is different from the Matlab function called 'unique' because it keeps the order in... Platforms: Matlab

License: Freeware Size: 10 KB Download (38): String Letter Counter Function Download

Function to Convert between DCM, Euler angles, Quaternions, and Euler vectors SpinCalc is a consolidated matlab function that will convert any rotation data between the 4 types included. Will also convert between 2 different Euler angle set types.Multiple orientations can be input. For N orientations:DCM ===> 3x3xN multidimensional arrayEA### ===> Nx3 matrixEuler Vectors... Platforms: Matlab


Added: September 04, 2013 | Visits: 513

Molecular Weight Calculator Function MolMass is a function for calculating the molar weight of a substance given in form of a chemical formula.Function call: MM = MolMass(substance)Substance is a string of the chemical formula of a substance.Example: MM = MolMass('Fe2(SO4)3');Substance can also be a vector of substances opened by... Platforms: Matlab

License: Freeware Size: 102.4 KB Download (46): Molecular Weight Calculator Function Download

Added: June 09, 2013 | Visits: 652

Generalized Nonlinear Non-analytic Chi-Square Fitting fitChiSquare is a generalized chi-square fitting routine for any model function when data measurement errors are known; it returns the model parameters and their uncertainties at the delta chi-square = 1 boundary (68% confidence interval). It also returns the chi-square and degrees of freedom... Platforms: Matlab

License: Freeware Size: 40.96 KB Download (41): Generalized Nonlinear Non-analytic Chi-Square Fitting Download

< 1 2 3 4 5