Numerics .NET Quickstart Samples in Visual Basic

To get you started right away with creating your own statistical applications using Extreme Numerics.NET, we are providing these QuickStart Samples. See our Sample Applications page for some real-life applications.

Data Analysis

Data Frames

Illustrates how to create and manipulate data frames using classes in the Extreme.DataAnalysis namespace.

Show code.

Indexes and Labels

Illustrates how to use indexes to label the rows and columns of a data frame or matrix, or the elements of a vector.

Show code.

Data Wrangling

Illustrates how to perform basic data wrangling or data munging operations on data frames using classes in the Extreme.DataAnalysis namespace.

Show code.

Manipulating Columns

Illustrates how to transform and manipulate the columns of a data frame.

Show code.

Sorting and Filtering

Illustrates how to sort and filter data used for data analysis.

Show code.

Grouping and Aggregation

Illustrates how to group data and how to compute aggregates over groups and entire datasets..

Show code.

Histograms

Illustrates how to create histograms using the Histogram class in the Extreme.DataAnalysis namespace.

Show code.

Mathematics

General

Complex Numbers

Illustrates how to work with complex numbers using the DoubleComplex structure.

Show code.

Elementary Functions

Illustrates how to use additional elementary functions.

Show code.

BigNumbers

Illustrates the basic use of the arbitrary precision classes: BigInteger, BigRational, BigFloat.

Show code.

Prime Numbers

Illustrates working with prime numbers and the IntegerMath class in the Extreme.Mathematics namespace.

Show code.

FFT/Fourier Transforms

Illustrates how to compute the forward and inverse Fourier transform of a real or complex signal using classes in the Extreme.Mathematics.SignalProcessing namespace.

Show code.

Generic Algorithms

Illustrates how to write algorithms that are generic over the numerical type of the arguments.

Show code.

Calculus

Basic Integration

Illustrates the basic numerical integration classes.

Show code.

Advanced Integration

Illustrates more advanced numerical integration using the AdaptiveIntegrator class.

Show code.

Higher Dimensional Numerical Integration

Illustrates numerical integration of functions in higher dimensions using classes in the Extreme.Mathematics.Calculus namespace.

Show code.

Numerical Differentiation

Illustrates how to approximate the derivative of a function.

Show code.

Differential Equations

Illustrates integrating systems of ordinary differential equations (ODE's).

Show code.

Curves

Basic Polynomials

Illustrates the basic use of the Polynomial class .

Show code.

Advanced Polynomials

Illustrates more advanced uses of the Polynomial class, including real and complex root finding, calculating least squares polynomials and polynomial arithmetic.

Show code.

Chebyshev Series

Illustrates the basic use of the ChebyshevSeries class .

Show code.

Curve Fitting and Interpolation

Linear Curve Fitting

Illustrates how to fit linear combinations of curves to data using the LinearCurveFitter class and other classes in the Extreme.Mathematics.Curves namespace.

Show code.

Nonlinear Curve Fitting

Illustrates nonlinear least squares curve fitting of predefined and user-defined curves using the NonlinearCurveFitter class.

Show code.

Piecewise Curves

Illustrates working with piecewise constant and piecewise linear curves using classes from the Extreme.Mathematics.Curves namespace.

Show code.

Cubic Splines

Illustrates using natural and clamped cubic splines for interpolation using classes in the Extreme.Mathematics.LinearAlgebra namespace.

Show code.

Solving Equations

Newton-Raphson Equation Solver

Illustrates the use of the NewtonRaphsonSolver class for solving equations in one variable and related functions for numerical differentiation.

Show code.

Root Bracketing Solvers

Illustrates the use of the root bracketing solvers for solving equations in one variable.

Show code.

Nonlinear Systems

Illustrates the use of the NewtonRaphsonSystemSolver and DoglegSystemSolver classes for solving systems of nonlinear equations.

Show code.

Optimization

Optimization In One Dimension

Illustrates the use of the Brent and Golden Section optimizer classes in the Extreme.Mathematics.Optimization namespace for one-dimensional optimization.

Show code.

Optimization In Multiple Dimensions

Illustrates the use of the multi-dimensional optimizer classes in the Extreme.Mathematics.Optimization namespace for optimization in multiple dimensions.

Show code.

Linear Programming

Illustrates solving linear programming (LP) problems using classes in the Extreme.Mathematics.Optimization.LinearProgramming namespace.

Show code.

Mixed Integer Programming

Illustrates how to solve mixed integer programming by solving Sudoku puzzles using the linear programming solver.

Show code.

Quadratic Programming

Illustrates how to solve optimization problems a quadratic objective function and linear constraints using classes in the Extreme.Mathematics.Optimization namespace.

Show code.

Nonlinear Programming

Illustrates solving nonlinear programs (optimization problems with linear or nonlinear constraints) using the NonlinearProgram and related classes.

Show code.

Random numbers and Quasi-Random Sequences

Random Number Generators

Illustrates how to use specialized random number generator classes in the Extreme.Statistics.Random namespace.

Show code.

Non-Uniform Random Numbers

Illustrates how to generate random numbers from a non-uniform distribution.

Show code.

Quasi-Random Sequences

Illustrates how to generate quasi-random sequences like Fauré and Sobol sequences using classes in the Extreme.Statistics.Random namespace.

Show code.

Linear Algebra

Vectors

Basic Vectors

Illustrates the basic use of the Vector class for working with vectors.

Show code.

Vector Operations

Illustrates how to perform operations on Vector objects, including construction, element access, arithmetic operations.

Show code.

Matrices

Basic Matrices

Illustrates the basic use of the Matrix class for working with matrices.

Show code.

Accessing Matrix Components

Illustrates different ways of iterating through the rows and columns of a matrix using classes in the Extreme.Mathematics.LinearAlgebra namespace.

Show code.

Matrix-Vector Operations

Illustrates how to perform operations that involve both matrices and vectors.

Show code.

Triangular Matrices

Illustrates how to work efficiently with upper or lower triangular or trapezoidal matrices.

Show code.

Symmetric Matrices

Illustrates how to work efficiently with symmetric matrices.

Show code.

Band Matrices

Illustrates how to work with the BandMatrix class.

Show code.

Sparse Matrices

Illustrates using sparse vectors and matrices using the classes in the Extreme.Mathematics.LinearAlgebra.Sparse namespace.

Show code.

Matrix Decompositions

Illustrates how compute various decompositions of a matrix using classes in the Extreme.Mathematics.LinearAlgebra namespace.

Show code.

Solving Equations and Least Squares

Linear Equations

Illustrates how to solve systems of simultaneous linear equations.

Show code.

Structured Linear Equations

Illustrates how to solve systems of simultaneous linear equations that have special structure.

Show code.

Iterative Sparse Solvers

Illustrates the use of iterative sparse solvers and preconditioners for efficiently solving large, sparse systems of linear equations.

Show code.

Least Squares

Illustrates how to solve least squares problems using classes in the Extreme.Mathematics.LinearAlgebra namespace.

Show code.

Statistics

Probability Distributions

Discrete Distributions

Illustrates how to use the classes that represent discrete probability distributions in the Extreme.Statistics.Distributions namespace.

Show code.

Continuous Distributions

Illustrates how to use the classes that represent continuous probability distributions in the Extreme.Statistics.Distributions namespace.

Show code.

Analysis of Variance

One-Way Anova

Illustrates how to use the OneWayAnovaModel class to perform a one-way analysis of variance.

Show code.

Repeated Measures Anova

Illustrates how to use the OneWayRAnovaModel class to perform a one-way analysis of variance with repeated measures.

Show code.

Two-Way Anova

Illustrates how to use the TwoWayAnovaModel class to perform a two-way analysis of variance.

Show code.

Regression Analysis

Simple Regression

Illustrates how to perform a simple linear regression using the SimpleRegressionModel class.

Show code.

Multiple Linear Regression

Illustrates how to use the LinearRegressionModel class to perform a multiple linear regression.

Show code.

Polynomial Regression

Illustrates how to fit data to polynomials using the PolynomialRegressionModel class.

Show code.

Logistic Regression

Illustrates how to use the LogisticRegressionModel class to create logistic regression models.

Show code.

Generalized Linear Models

Illustrates how to use the GeneralizedLinearModel class to compute probit, Poisson and similar regression models.

Show code.

Time Series Analysis

Simple Time Series

Illustrates how to perform simple operations on time series data using classes in the Extreme.Statistics.TimeSeriesAnalysis namespace.

Show code.

Variable Transformations

Illustrates how to perform a range of transformations on statistical data.

Show code.

ARIMA Models

Illustrates how to work with ARIMA time series models using classes in the Extreme.Statistics.TimeSeriesAnalysis namespace.

Show code.

Multivariate Analysis

Cluster Analysis

Illustrates how to use the classes in the Extreme.Statistics.Multivariate namespace to perform hierarchical clustering and K-means clustering.

Show code.

Principal Component Analysis (PCA)

Illustrates how to perform a Principal Components Analysis using classes in the Extreme.Statistics.Multivariate namespace.

Show code.

Factor Analysis (FA)

Illustrates how to perform a Factor Analysis using classes in the Extreme.Statistics.Multivariate namespace.

Show code.

Hypothesis Tests

Mean Tests

Illustrates how to use various tests for the mean of one or more sanples using classes in the Extreme.Statistics.Tests namespace.

Show code.

Variance Tests

Illustrates how to perform hypothesis tests involving the standard deviation or variance using classes in our .NET statistical library.

Show code.

Goodness-Of-Fit Tests

Illustrates how to test for goodness-of-fit using classes in the Extreme.Statistics.Tests namespace.

Show code.

Homogeneity Of Variances Tests

Illustrates how to test a collection of variables for equal variances using classes in the Extreme.Statistics.Tests namespace.

Show code.

Non-Parametric Tests

Illustrates how to perform non-parametric tests like the Wilcoxon-Mann-Whitney test and the Kruskal-Wallis test.

Show code.