MathPlusNet.Blazor 1.0.0-preview.1

This is a prerelease version of MathPlusNet.Blazor.
dotnet add package MathPlusNet.Blazor --version 1.0.0-preview.1
                    
NuGet\Install-Package MathPlusNet.Blazor -Version 1.0.0-preview.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MathPlusNet.Blazor" Version="1.0.0-preview.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MathPlusNet.Blazor" Version="1.0.0-preview.1" />
                    
Directory.Packages.props
<PackageReference Include="MathPlusNet.Blazor" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add MathPlusNet.Blazor --version 1.0.0-preview.1
                    
#r "nuget: MathPlusNet.Blazor, 1.0.0-preview.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package MathPlusNet.Blazor@1.0.0-preview.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=MathPlusNet.Blazor&version=1.0.0-preview.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=MathPlusNet.Blazor&version=1.0.0-preview.1&prerelease
                    
Install as a Cake Tool

MathPlusNet.Blazor

MathPlusNet.Blazor provides Community Blazor components for mathematical and quantitative workflows, including matrix, distribution, financial, forecasting, formula, simulation, optimization, and machine-learning views.

Install

dotnet add package MathPlusNet.Blazor --prerelease

The package brings MathPlusNet as its mathematical dependency and targets net8.0, net9.0, and net10.0. It is the Apache-2.0 Community baseline: its public components remain usable without a commercial credential.

MathPlusNet.Blazor.Pro is reserved as a future Professional package for enterprise workflows, integrations and product-specific components. It will extend this package rather than duplicate or replace Community APIs. Its licensing and support model is documented in MATHPLUSNET_BLAZOR_COMMERCIAL_PACKAGING.md.

Example

@using MathPlusNet.Blazor
@using MathPlusNet.LinearAlgebra

<MatrixViewer Value="matrix" />

<StatisticalChart Title="Observed and fitted values" Series="series" />

@code {
    private readonly Matrix matrix = Matrix.Identity(3);
    private readonly IReadOnlyList<StatisticalChartSeries> series =
    [
        new("Observed", [new(0, 10), new(1, 14), new(2, 17)]),
        new("Fitted", [new(0, 11), new(1, 13), new(2, 18)]),
    ];
}

Documentation And Samples

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.0-preview.1 67 7/28/2026