MathTools.Algebra
1.2.11
dotnet add package MathTools.Algebra --version 1.2.11
NuGet\Install-Package MathTools.Algebra -Version 1.2.11
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="MathTools.Algebra" Version="1.2.11" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MathTools.Algebra" Version="1.2.11" />
<PackageReference Include="MathTools.Algebra" />
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 MathTools.Algebra --version 1.2.11
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MathTools.Algebra, 1.2.11"
#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.
#addin nuget:?package=MathTools.Algebra&version=1.2.11
#tool nuget:?package=MathTools.Algebra&version=1.2.11
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MathTools.Algebra
Example
var formula = Formula.Parse("x^4*exp(x)");
var value = formula.Eval(new { x = 0.2 });
var derivative = formula.Derive("x").Simplify();
var text = derivative.ToString(); // 4*x^3*Exp(x)+x^4*Exp(x)
var derivedValue = derivative.Eval(new { x = 0.2 });
var formula = Formula.Pow("x", 4) * Formula.Exp("x");
var value = formula.Eval(new { x = 0.2 });
var derivative = formula.Derive("x").Simplify();
var text = derivative.ToString(); // 4*x^3*Exp(x)+x^4*Exp(x)
var derivedValue = derivative.Eval(new { x = 0.2 });
var x = new Variable("x");
var formula = Formula.Pow(x, 4) * Formula.Exp(x);
var value = formula.Eval(new { x = 0.2 });
var derivative = formula.Derive("x").Simplify();
var text = derivative.ToString(); // 4*x^3*Exp(x)+x^4*Exp(x)
var derivedValue = derivative.Eval(new { x = 0.2 });
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0
- No dependencies.
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.2.11 | 187 | 5/2/2023 |
1.1.6 | 179 | 4/28/2023 |
1.0.5-beta | 129 | 4/25/2023 |
1.0.2 | 183 | 4/27/2023 |