FLUTTER ECOSYSTEM

albertodev01/equations

一個用 Dart 編寫的方程式求解庫。

方程式 專案封面
Stars
59
Forks
9
最近推送(UTC)
2025年12月31日
專案狀態
未封存
Alberto GitHub avatar
GITHUB User

Alberto ↗

Dart and Flutter. Author of the "Flutter Complete Reference" book series.

HolaflyItaly官方網站 ↗
語言Dart

技術主題

此儲存庫發佈的套件

使用的依賴

依賴清單 3 項

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

dart_equations logo

An equation-solving library written purely in Dart.

CI status Stars count on GitHub Stars count on GitHub


The equations package is written purely in Dart and helps you solve equations. Whether you're building a CLI application, a web server or a cross-platform Flutter project, equations has you covered. Here's what you can do with this :

  • solve polynomial equations and inequalities with Algebraic types;
  • solve nonlinear equations with Nonlinear types;
  • solve linear systems of equations with SystemSolver types;

In addition, you can also find utilities to work with:

  • real and complex matrices, using the RealMatrix and ComplexMatrix types;
  • complex numbers, using the Complex type;
  • integral evaluation, with NumericalIntegration types;
  • data interpolation, with Interpolation types.

The website hosted at this repository's GitHub Pages contains the latest dart doc HTML documentation. For more information about solving equations and examples on how to use the classes from this package, check out the articles on the Wiki pages: