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.316.972 Times

Function Plotter freeware
Filter: All | Freeware | Demo
 

Function Plotter

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

A ThunkSpace for Python This script allows normal functions to be attached to a 'ThunkSpace' which causes the function to be lazily evaluated when the thunk is referenced. It is just an experiment using closures and descriptors to try and change python function call syntax.



Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (53): A ThunkSpace for Python Download

Added: May 10, 2013 | Visits: 322

Coding Standard Adaptor This script contains a function, "rename_members", which takes an object, and two strings describing variable naming conventions (e.g. "allcamel", "underscores", etc). It translates attribute names on the given object from the first naming convention to the second (it doesn't delete the original...





Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (53): Coding Standard Adaptor Download

Added: May 10, 2013 | Visits: 421

Autosuper to the limit This script returns a tuple (cls,self,method), where:  -  cls is the class in wich you can find the definition of the method from which this function is called;  -  self is the instance passed as first argument to the method from which this function is called;  -  method is the unbound...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (53): Autosuper to the limit Download

Added: May 10, 2013 | Visits: 367

Timeit module wrapper This script contains a simple, easy to use wrapper function for doing quick tests of your functions using the timeit module.The timeit module provides an easy way of testing the performance of your Python code by running it in many iterations and averaging the timings. However it is not very...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (53): Timeit module wrapper Download

Added: May 10, 2013 | Visits: 359

Groupby for ndarrays This script is a groupby function for arrays. Given a list of arrays and a `key` function, it will group each array based on the value of `key(args[0])`. The returned arrays will be two dimensional. The size of the first dimension is equal to the number of groups, and the size of the second...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (53): Groupby for ndarrays Download

Added: November 19, 2012 | Visits: 331

PHP_FunctionCallTracer .0RC1 PHP_FunctionCallTracer creates a function calls debug trace. Functions arguments, returned parameters and watched variables are reported in the same section. Traced variables can be processed by provided user functions for displaying purposes.


Platforms: BSD Solaris

License: Freeware Download (53): PHP_FunctionCallTracer .0RC1 Download

Added: July 23, 2013 | Visits: 376

Xfoil Interface This simple function will use a system call to run Xfoil. It then loads the results into a data structure which you can then use in your Matlab script.For example to deflect the trailing edge of a NACA0009 by 5deg at 65% chord and run multiple incidence angles...[pol foil] =...


Platforms: Matlab

License: Freeware Size: 10 KB Download (53): Xfoil Interface Download

Added: September 03, 2013 | Visits: 436

Symbolic Hessian Evaluator For a symbolic input function f, returns the symbolic Hessian matrix. A real time saver imho I don't know how useful anyone will find this, but eh, my professor made us do it on the test, so I figure this will save at least someone the headache of having to find the Hessian by hand (provided they...


Platforms: Matlab

License: Freeware Size: 51.2 KB Download (53): Symbolic Hessian Evaluator Download

Added: August 16, 2013 | Visits: 841

Heston Nandi Option price this function calculates the price of Call option based on the GARCH option pricing formula of Heston and Nandi(2000). The input to the function are: current price of the underlying asset, strike price, unconditional variance of the underlying asset, time to maturity in days, and daily risk free...


Platforms: Matlab

License: Freeware Size: 10 KB Download (53): Heston Nandi Option price Download

Added: May 12, 2013 | Visits: 471

Fast function to save a matrix write_matrix_bin(f,m) saves the matrix "m" in a binaryfile "f". write_matrix_bin is a lot faster than the built in function save(), andtakes up much less diskspace than the old "save -v6" which doesn't use compression.write_matrix_bin also includes an option for compression with...


Platforms: Matlab

License: Freeware Size: 10 KB Download (53): Fast function to save a matrix Download

Added: May 10, 2013 | Visits: 570

Finding the value passed to a function by name Sometimes inside a decorator that creates a function with a generic (*args, **kwargs) signature, you want to access a value passed for a particular parameter name to a wrapped function, but don't know whether that value will be passed as a positional or keyword argument, or whether the wrapped...


Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: July 02, 2013 | Visits: 509

Q function Because of the "erfc" function, the processing time is very small.


Platforms: Matlab

License: Freeware Size: 102.4 KB Download (52): Q function Download

Added: May 10, 2013 | Visits: 389

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: 361

Quickslice decorator This script defines a decorator that allows for an abbreviated slice syntax in function arguments: {start:end}. Step is notsupported. Valid quickslices are dictionaries with a single integer key which has an integer value. Arguments can be strings or integers, and indicate the positional or...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (52): Quickslice decorator Download

Added: May 10, 2013 | Visits: 332

Flexible enumerate() Flexible enumerate() script adds an additional start argument to the built-in enumerate function.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (52): Flexible enumerate() Download

Added: May 10, 2013 | Visits: 416

Using introspection to verify Eiffel contracts This script shows how you can use intospection to create a function wraper that verify Eiffel like contracts.


Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: May 10, 2013 | Visits: 198

Pipe convenience function for doing pipes This script allows that arbitrary number of commands to be strung together with each one feeding into the next ones input.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (52): Pipe convenience function for doing pipes Download

Added: May 10, 2013 | Visits: 446

Determining the current functions name This script defines the whoaminow() function that can be used inside a function to determine, at the time it is called, the name under which that function has been invoked.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (52): Determining the current functions name Download

Added: May 10, 2013 | Visits: 382

Type-checking decorator This is a decorator that lets you annotate function definitions with argument type requirements. These type requirements are automatically checked by the system at function invocation time. The decorator frees you from writing type-checking boilerplate code by hand.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (52): Type-checking decorator Download

Added: May 10, 2013 | Visits: 390

Memoization with cache cleared on return This script memoizes, but clears cache when last function call returns.It is suitable for dynamic programming.


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (52): Memoization with cache cleared on return Download

< 1 2 3 4 5