A lightweight library for embedding Matlab output window (graphs, plots) inside C# WPF x64 applications.
| Features | Supported |
|---|---|
| Windows | ✔ |
| Single C# dll | ✔ |
| Open Source | ✔ |
| MIT license | ✔ |
Latest release can be found here.
Use the NuGet package manager to add a reference to WPFMatlabPlotter.
<WPFMatlabPlotter:MatlabPlot x:Name="MainPlot" Width="300" Height="300" Margin="10" BorderBrush="Black" BorderThickness="1"/> //1. Call YOUR OWN Matlab .dll to draw a plot.
_matlabController.matlab_plot();
//2. Call WPFMatlabPlotter
MainPlot.BuildGraph("Figure 1"); MainPlot.DestroyGraph();You can find examples (built for Matlab Runtime 9.2) in the /Examples folder in the code repository.
MIT - do whatever you want.
