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 49.601.446 Times

Thirty Two Snowboard Boots software
Filter: All | Freeware | Demo
 

Thirty Two Snowboard Boots

< 1 2 3 4 5 
Added: July 30, 2013 | Visits: 427

Merge two sorted vectors into a sorted vector mergesorted.m------------------If we have two individually sorted vectors "a" and "b" but they are not sorted with respect to each other and we want to merge them into vector "c" such that "c" is also a sorted vector. Then c=mergesorted(a,b) can be used.This function most likely make difference...



Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Merge two sorted vectors into a sorted vector Download

Added: August 06, 2013 | Visits: 447

Compares probabilities of two binomial samples Compares probabilities of two binomial samples X, Y from a Bernoully experiments with probability p1 for set X and p2 for set YTest the null hypothesis H_0: p1 = p2 vs alternatives H_1: p1 > p2 H_2: p1 < p2 H_3: p1 != p2 Input: X - row of 0 or 1 Y - row of 0 or 1 Output: z - normal statistics...





Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (40): Compares probabilities of two binomial samples Download

Added: March 25, 2013 | Visits: 383

Shortest distance between two line segments Computes the shortest distance between two line segments given start and end points for each. Adapts the algorithm found on Dan Sunday's website (http://softsurfer.com/Archive/algorithm_01...ment_to_Segment).Usage: Input the start and end x,y,z coordinates for two line segments.p1, p2 are [x,y,z]...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): Shortest distance between two line segments Download

Added: April 14, 2013 | Visits: 505

Minimum distance between two polygons This function computes the minimum euclidean distance between two polygons P1 & P2.- for vertex-vertex case


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (41): Minimum distance between two polygons Download

LCSSubStr-a function that return two string's largest common part (Sripts) a function that return two string's largest common part% Usage:% [ret]=LCSubstr(s,t)% s: input string 1% t: input string 2% ret: Largest Common String% z: Largest Common String Length% L : Compare matrix% Example:% >>a='This is very common string';% >>b='string is very common';%...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (41): LCSSubStr-a function that return two string's largest common part (Sripts) Download

Added: April 21, 2013 | Visits: 253

Two-yield elastoplasticity solver (Sripts) 2D elastoplasticity solver for a time dependent two-yied model, which generalizes a classical model of linear kinematic hardening and features a hysteresis behaviour.This is an updated version of Jan Valdman's code from his PhD thesis on Mathematical and Numerical Analysis of Elastoplastic...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 20.48 KB Download (39): Two-yield elastoplasticity solver (Sripts) Download

Get the 2nd derivatives of a vector with two finite boundaries The function gets the 2nd derivatives of a vector with two finite boundariesThe function gets the 2nd derivatives of a vector with two finite boundaries.function V2ndDx = get_V2ndDx(V,delta_x,INDstart,INDend)Input:V = the input vector, 1D datadelta_x = delta xINDstart = first indexINDend = last...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (39): Get the 2nd derivatives of a vector with two finite boundaries Download

Added: September 10, 2013 | Visits: 406

Overlay two images with adjustable transparency factor This allows overlaying two images for validation and for placing registration landmarks.This is a bug-fix of an earlier ImageOverlay.m and the transparency factor is now adjustable.


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): Overlay two images with adjustable transparency factor Download

Added: August 09, 2013 | Visits: 200

INTERACTING TWO MATLAB GUIS PROGRAMATICALLY Interacting two GUIs using appdata programatically.It's my first upload. It is a rework of Doug Hull's work. While he used GUIDE to do this, I tried to do it programatically. After several trials, I succeeded and decided to keep it online here. Hope this is not a plagiarism.Reference:- Doug...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 645.12 KB Download (39): INTERACTING TWO MATLAB GUIS PROGRAMATICALLY Download

Checking the similarity of two 2D images using a checker-board with adjustable tile transparency This is a part of InSPIRE for checking the similarity of two figures possibly after registration.This provides the users a way to display moving and fixed images in a checker-board pattern. When alpha1=1 and alpha2=0, this program returns tousual black and white checker board pattern. Please...


Platforms: Matlab


The matrix implementation of the two-layer Multilayer Perceptron (MLP) neural networks The matrix implementation of the two-layer Multilayer Perceptron (MLP) neural networks.The matrix implementation of the MLP and Backpropagation algorithm for two-layer Multilayer Perceptron (MLP) neural networks.Marcelo Augusto Costa FernandesDCA - CT - UFRNmfernandes@dca.ufrn.br


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (57): The matrix implementation of the two-layer Multilayer Perceptron (MLP) neural networks Download

A function to get the 1st derivatives of a vector with two finite boundaries This function gets the 1st derivatives of a vector V with two boundariesInput:V = the input vector, 1D datadelta_x = delta xINDstart = first indexINDend = last indexOutput:VDx = 1st derivative of V with respect to x


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (41): A function to get the 1st derivatives of a vector with two finite boundaries Download

UISplitPane - Split a container (figure/frame/uipanel) into two resizable sub-containers UISPLITPANE splits the specified container(s) (figure, panel or frame, referenced by handle(s) hParent) into two distinct panes (panels) separated by a movable divider. If no hParent container is specified, then the current figure (gcf) is assumed. Matlab components may freely be added to each of...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 61.44 KB Download (47): UISplitPane - Split a container (figure/frame/uipanel) into two resizable sub-containers Download

Added: June 16, 2013 | Visits: 486

Connect two pixels Connect two pixels in an image with the desired graylevelCommand line------------result = func_DrawLine(Img, X1, Y1, X2, Y2)input: Img : the original image. (X1, Y1), (X2, Y2) : points to connect. nG : the gray level of the line.output: resultNote---- Img can be anything (X1, Y1), (X2, Y2) should...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (42): Connect two pixels Download

Added: August 28, 2013 | Visits: 389

Shade area between two curves This routine will shade the area of a 2-D plot between two user defined vectors. Simply pass the two vectors, and their corresponding horizontal coordinates, select your fill color and transparency level and viola! You have a figure that is colored in between the two input vectors.


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (40): Shade area between two curves Download

Added: May 30, 2013 | Visits: 463

Draw two figures with separate x and y axis This script plots two sets of 1D data on the same figure with two separate axis and with the same gridding.The code also checks if the x-axis data are the same, if the x-axis dataare not the same, it draws an additional x-axis on the top of the figure.The two sets of data with their axes are...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (40): Draw two figures with separate x and y axis Download

Added: April 26, 2013 | Visits: 349

Views Two Column Table This views style plugin lets you display views in a two column table layout. The field label is displayed in the first column, with the field data in the second column.


Platforms: PHP

License: Freeware Size: 10 KB Download (43): Views Two Column Table Download

Added: May 21, 2013 | Visits: 365

Two Columns Archive A widget that displays blog archive in two columns.See the Two Columns Archive homepage for further information. Install : # Upload two-columns-archive.php to the /wp-content/plugins/ directory# Activate the plugin through the 'Plugins' menu in WordPress# Now you can see a new widget in 'Widgets'...


Platforms: PHP

License: Freeware Size: 10 KB Download (40): Two Columns Archive Download

Added: August 03, 2013 | Visits: 424

XY 3D Density Plot (for two-class data) XY3DDensityPlotView is used to visualize the density of points described by two variables X and Y, as a surface plot. This may be useful when points are densely packed and overlapping, as in this case a scatterplot may be limited in revealing their actual distribution.The XY data must be...


Platforms: PHP

License: Shareware Cost: $0.00 USD Size: 51.2 KB Download (47): XY 3D Density Plot (for two-class data) Download

Added: October 02, 2013 | Visits: 539

Two Dimensional Schrodinger Equation The Two Dimensional Schrodinger Equation model simulates the time evolution of a two-dimensional wave packet as it moves towards a slit with an obstacle in it, both with variable widths. By changing three parameters via sliders provided, slit width, obstacle width, and initial position of the...


Platforms: Mac

License: Freeware Size: 71.68 KB Download (36): Two Dimensional Schrodinger Equation Download

< 1 2 3 4 5