Matrix_0 1.0.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Matrix_0 --version 1.0.2
NuGet\Install-Package Matrix_0 -Version 1.0.2
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="Matrix_0" Version="1.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Matrix_0" Version="1.0.2" />
<PackageReference Include="Matrix_0" />
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 Matrix_0 --version 1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Matrix_0, 1.0.2"
#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 Matrix_0@1.0.2
#: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=Matrix_0&version=1.0.2
#tool nuget:?package=Matrix_0&version=1.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
開啟Visual Studio 2022(或2026),執行應用程式專案
在最上層輸入 using Matrix_0; 則會於底部產生紅色折現。
再從功能表 --> 工具 > Nuget Package Manager > Package Manager Console 開啟Package Manager Console 視窗。 輸入 PM> 『dontnet add Package Matrix_0』。
則紅色的折線會消失。
輸入C#程式碼,啟動但不偵錯(Ctrl + F5)。
輸出執行結果。
CSharp 程式碼如下:
// App06 專案
using Matrix_0;
// 先建構C#陣列。
double[,] Are = { { 3, 4, 5 }, {0, -5, -4}, {-9, 8, 7} };
double[,] Aim = { {7, 4, 8}, {4, 8, 9}, {5, -8, -7} };
// 再建構 精銳矩陣。
// 由精銳矩陣,便可使用12種矩陣運算子和各種類別庫。
// 參見程式碼 https://myyeh2.github.io
// 實數矩陣B
ReMatrix B = new ReMatrix(Are);
// 複數矩陣C
CxMatrix C = new CxMatrix(Are, Aim);
// 列印矩陣。
Console.WriteLine("矩陣 B:\n{0}", new PR(B));
Console.WriteLine("矩陣 C:\n{0}", new PR(C));
/* 輸出結果如下:
矩陣 B:
3.00000 4.00000 5.00000
0.00000 -5.00000 -4.00000
-9.00000 8.00000 7.00000
矩陣 C:
3.00000 + 7.00000i, 4.00000 + 4.00000i, 5.00000 + 8.00000i
0.00000 + 4.00000i, -5.00000 + 8.00000i, -4.00000 + 9.00000i
-9.00000 + 5.00000i, 8.00000 - 8.00000i, 7.00000 - 7.00000i
*/
詳細的資訊,參見GitHub儲存庫 : https://myyeh2.github.io
| Product | Versions 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 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. net10.0 was computed. 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.
-
net8.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.0.20 | 100 | 8/8/2026 |
| 1.0.19 | 108 | 7/26/2026 |
| 1.0.18 | 103 | 7/3/2026 |
| 1.0.17 | 100 | 7/3/2026 |
| 1.0.16 | 112 | 6/18/2026 |
| 1.0.15 | 105 | 6/13/2026 |
| 1.0.14 | 99 | 5/19/2026 |
| 1.0.13 | 101 | 5/3/2026 |
| 1.0.12 | 123 | 2/5/2026 |
| 1.0.11 | 121 | 1/12/2026 |
| 1.0.10 | 121 | 1/5/2026 |
| 1.0.9 | 201 | 12/25/2025 |
| 1.0.8 | 200 | 12/23/2025 |
| 1.0.7 | 419 | 11/20/2025 |
| 1.0.6 | 295 | 11/12/2025 |
| 1.0.5 | 192 | 10/21/2025 |
| 1.0.4 | 198 | 10/7/2025 |
| 1.0.3 | 196 | 10/6/2025 |
| 1.0.2 | 192 | 10/5/2025 |
| 1.0.1 | 200 | 10/2/2025 |
Loading failed