├── .gitattributes ├── C_project ├── CS_GUI │ ├── GUI │ │ ├── .vs │ │ │ └── GUI │ │ │ │ └── v17 │ │ │ │ └── .suo │ │ ├── App.config │ │ ├── GUI.csproj │ │ ├── GUI.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── UIFigure.Designer.cs │ │ ├── UIFigure.cs │ │ ├── UIFigure.resx │ │ ├── bin │ │ │ └── x64 │ │ │ │ ├── Debug │ │ │ │ ├── GUI.exe │ │ │ │ ├── GUI.pdb │ │ │ │ ├── KnobControl.dll │ │ │ │ ├── Lamp.dll │ │ │ │ ├── LiveCharts.WinForms.dll │ │ │ │ ├── LiveCharts.WinForms.pdb │ │ │ │ ├── LiveCharts.Wpf.dll │ │ │ │ ├── LiveCharts.Wpf.pdb │ │ │ │ ├── LiveCharts.dll │ │ │ │ ├── LiveCharts.pdb │ │ │ │ └── filter_bode.dll │ │ │ │ └── Release │ │ │ │ ├── GUI.exe │ │ │ │ ├── GUI.pdb │ │ │ │ ├── KnobControl.dll │ │ │ │ ├── Lamp.dll │ │ │ │ ├── LiveCharts.WinForms.dll │ │ │ │ ├── LiveCharts.WinForms.pdb │ │ │ │ ├── LiveCharts.Wpf.dll │ │ │ │ ├── LiveCharts.Wpf.pdb │ │ │ │ ├── LiveCharts.dll │ │ │ │ ├── LiveCharts.pdb │ │ │ │ └── filter_bode.dll │ │ ├── favicon.ico │ │ ├── filter_bode.dll │ │ ├── filter_bode_ML.dll │ │ ├── filter_bode_VS.dll │ │ ├── packages.config │ │ └── packages │ │ │ ├── LiveCharts.0.9.7 │ │ │ ├── LiveCharts.0.9.7.nupkg │ │ │ ├── lib │ │ │ │ ├── net40 │ │ │ │ │ ├── LiveCharts.dll │ │ │ │ │ ├── LiveCharts.pdb │ │ │ │ │ └── LiveCharts.xml │ │ │ │ ├── net45 │ │ │ │ │ ├── LiveCharts.dll │ │ │ │ │ ├── LiveCharts.pdb │ │ │ │ │ └── LiveCharts.xml │ │ │ │ └── portable-net45+win8+wp8 │ │ │ │ │ ├── LiveCharts.XML │ │ │ │ │ ├── LiveCharts.dll │ │ │ │ │ └── LiveCharts.pdb │ │ │ └── readme.txt │ │ │ ├── LiveCharts.WinForms.0.9.7.1 │ │ │ ├── LiveCharts.WinForms.0.9.7.1.nupkg │ │ │ ├── lib │ │ │ │ ├── net40 │ │ │ │ │ ├── LiveCharts.WinForms.XML │ │ │ │ │ ├── LiveCharts.WinForms.dll │ │ │ │ │ └── LiveCharts.WinForms.pdb │ │ │ │ └── net45 │ │ │ │ │ ├── LiveCharts.WinForms.XML │ │ │ │ │ ├── LiveCharts.WinForms.dll │ │ │ │ │ └── LiveCharts.WinForms.pdb │ │ │ └── tools │ │ │ │ └── install.ps1 │ │ │ └── LiveCharts.Wpf.0.9.7 │ │ │ ├── LiveCharts.Wpf.0.9.7.nupkg │ │ │ ├── lib │ │ │ ├── net40 │ │ │ │ ├── LiveCharts.Wpf.XML │ │ │ │ ├── LiveCharts.Wpf.dll │ │ │ │ └── LiveCharts.Wpf.pdb │ │ │ └── net45 │ │ │ │ ├── LiveCharts.Wpf.XML │ │ │ │ ├── LiveCharts.Wpf.dll │ │ │ │ └── LiveCharts.Wpf.pdb │ │ │ └── tools │ │ │ └── install.ps1 │ ├── KnobControl │ │ └── bin │ │ │ ├── Debug │ │ │ └── KnobControl.dll │ │ │ └── Release │ │ │ └── KnobControl.dll │ ├── LampControl │ │ ├── Debug │ │ │ └── Lamp.dll │ │ └── Release │ │ │ └── Lamp.dll │ └── M_Algorithm │ │ ├── C_codegen.m │ │ ├── filter_bode.m │ │ └── filter_bode_DLL.m └── C_DISLIN │ ├── Dev-Cpp │ ├── Filter_Design.dev │ ├── Filter_Design.exe │ ├── Parse_files.m │ ├── main.c │ ├── main.h │ ├── main.txt │ ├── main_original.c │ ├── main_original.h │ ├── main_types.h │ ├── min_and_max.txt │ └── rtwtypes.h │ └── VS2022 │ ├── .vs │ └── Filter_Design │ │ └── v17 │ │ └── .suo │ ├── Filter_Design.sln │ ├── Filter_Design.vcxproj │ ├── Filter_Design.vcxproj.filters │ ├── Filter_Design.vcxproj.user │ ├── Parse_files.m │ ├── main.c │ ├── main.h │ ├── main.txt │ ├── main_original.c │ ├── main_original.h │ ├── min_and_max.txt │ ├── rtwtypes.h │ ├── tmwtypes.h │ └── x64 │ ├── Debug │ └── Filter_Design.exe │ └── Release │ └── Filter_Design.exe ├── M_C_project ├── check_num_input.m ├── check_str_input.m ├── check_yes_or_no.m ├── filter_bode.m ├── main.m ├── main.prj ├── plot_filter.m └── test_main.m ├── M_MEX_project ├── Deployment │ ├── FilterDesign.ctf │ ├── FilterDesign.exe │ ├── FilterDesignCompiler.prj │ ├── FilterDesignWebApp.prj │ ├── favicon.png │ └── splash_screen.png ├── Filter_Design.mlapp ├── check_num_input.m ├── check_str_input.m ├── check_yes_or_no.m ├── filter_bode.m ├── filter_bode_mex.mexw64 ├── main.m ├── main.prj ├── main_mex.mexw64 ├── plot_filter.m ├── test_filter_bode.m └── test_main.m ├── _Documents ├── Filter_Design_C_Codegen_and_Deployment.pdf └── Readme.pdf └── license.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/.gitattributes -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/.vs/GUI/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/.vs/GUI/v17/.suo -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/App.config -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/GUI.csproj -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/GUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/GUI.sln -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/Program.cs -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/UIFigure.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/UIFigure.Designer.cs -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/UIFigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/UIFigure.cs -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/UIFigure.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/UIFigure.resx -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/GUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/GUI.exe -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/GUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/GUI.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/KnobControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/KnobControl.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/Lamp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/Lamp.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.WinForms.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.WinForms.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.Wpf.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.Wpf.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/LiveCharts.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Debug/filter_bode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Debug/filter_bode.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/GUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/GUI.exe -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/GUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/GUI.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/KnobControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/KnobControl.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/Lamp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/Lamp.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.WinForms.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.WinForms.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.Wpf.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.Wpf.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/LiveCharts.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/bin/x64/Release/filter_bode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/bin/x64/Release/filter_bode.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/favicon.ico -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/filter_bode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/filter_bode.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/filter_bode_ML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/filter_bode_ML.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/filter_bode_VS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/filter_bode_VS.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages.config -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/LiveCharts.0.9.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/LiveCharts.0.9.7.nupkg -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net40/LiveCharts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net40/LiveCharts.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net40/LiveCharts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net40/LiveCharts.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net40/LiveCharts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net40/LiveCharts.xml -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net45/LiveCharts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net45/LiveCharts.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net45/LiveCharts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net45/LiveCharts.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net45/LiveCharts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/net45/LiveCharts.xml -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/portable-net45+win8+wp8/LiveCharts.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/portable-net45+win8+wp8/LiveCharts.XML -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/portable-net45+win8+wp8/LiveCharts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/portable-net45+win8+wp8/LiveCharts.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/portable-net45+win8+wp8/LiveCharts.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/lib/portable-net45+win8+wp8/LiveCharts.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.0.9.7/readme.txt -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/LiveCharts.WinForms.0.9.7.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/LiveCharts.WinForms.0.9.7.1.nupkg -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net40/LiveCharts.WinForms.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net40/LiveCharts.WinForms.XML -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net40/LiveCharts.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net40/LiveCharts.WinForms.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net40/LiveCharts.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net40/LiveCharts.WinForms.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net45/LiveCharts.WinForms.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net45/LiveCharts.WinForms.XML -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net45/LiveCharts.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net45/LiveCharts.WinForms.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net45/LiveCharts.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/lib/net45/LiveCharts.WinForms.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.WinForms.0.9.7.1/tools/install.ps1 -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/LiveCharts.Wpf.0.9.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/LiveCharts.Wpf.0.9.7.nupkg -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net40/LiveCharts.Wpf.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net40/LiveCharts.Wpf.XML -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net40/LiveCharts.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net40/LiveCharts.Wpf.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net40/LiveCharts.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net40/LiveCharts.Wpf.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net45/LiveCharts.Wpf.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net45/LiveCharts.Wpf.XML -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net45/LiveCharts.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net45/LiveCharts.Wpf.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net45/LiveCharts.Wpf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/lib/net45/LiveCharts.Wpf.pdb -------------------------------------------------------------------------------- /C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/GUI/packages/LiveCharts.Wpf.0.9.7/tools/install.ps1 -------------------------------------------------------------------------------- /C_project/CS_GUI/KnobControl/bin/Debug/KnobControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/KnobControl/bin/Debug/KnobControl.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/KnobControl/bin/Release/KnobControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/KnobControl/bin/Release/KnobControl.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/LampControl/Debug/Lamp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/LampControl/Debug/Lamp.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/LampControl/Release/Lamp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/LampControl/Release/Lamp.dll -------------------------------------------------------------------------------- /C_project/CS_GUI/M_Algorithm/C_codegen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/M_Algorithm/C_codegen.m -------------------------------------------------------------------------------- /C_project/CS_GUI/M_Algorithm/filter_bode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/M_Algorithm/filter_bode.m -------------------------------------------------------------------------------- /C_project/CS_GUI/M_Algorithm/filter_bode_DLL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/CS_GUI/M_Algorithm/filter_bode_DLL.m -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/Filter_Design.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/Filter_Design.dev -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/Filter_Design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/Filter_Design.exe -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/Parse_files.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/Parse_files.m -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/main.c -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/main.h -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/main.txt -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/main_original.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/main_original.c -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/main_original.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/main_original.h -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/main_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/main_types.h -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/min_and_max.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/min_and_max.txt -------------------------------------------------------------------------------- /C_project/C_DISLIN/Dev-Cpp/rtwtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/Dev-Cpp/rtwtypes.h -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/.vs/Filter_Design/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/.vs/Filter_Design/v17/.suo -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/Filter_Design.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/Filter_Design.sln -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/Filter_Design.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/Filter_Design.vcxproj -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/Filter_Design.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/Filter_Design.vcxproj.filters -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/Filter_Design.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/Filter_Design.vcxproj.user -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/Parse_files.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/Parse_files.m -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/main.c -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/main.h -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/main.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/main.txt -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/main_original.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/main_original.c -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/main_original.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/main_original.h -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/min_and_max.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/min_and_max.txt -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/rtwtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/rtwtypes.h -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/tmwtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/tmwtypes.h -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/x64/Debug/Filter_Design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/x64/Debug/Filter_Design.exe -------------------------------------------------------------------------------- /C_project/C_DISLIN/VS2022/x64/Release/Filter_Design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/C_project/C_DISLIN/VS2022/x64/Release/Filter_Design.exe -------------------------------------------------------------------------------- /M_C_project/check_num_input.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_C_project/check_num_input.m -------------------------------------------------------------------------------- /M_C_project/check_str_input.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_C_project/check_str_input.m -------------------------------------------------------------------------------- /M_C_project/check_yes_or_no.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_C_project/check_yes_or_no.m -------------------------------------------------------------------------------- /M_C_project/filter_bode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_C_project/filter_bode.m -------------------------------------------------------------------------------- /M_C_project/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_C_project/main.m -------------------------------------------------------------------------------- /M_C_project/main.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_C_project/main.prj -------------------------------------------------------------------------------- /M_C_project/plot_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_C_project/plot_filter.m -------------------------------------------------------------------------------- /M_C_project/test_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_C_project/test_main.m -------------------------------------------------------------------------------- /M_MEX_project/Deployment/FilterDesign.ctf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/Deployment/FilterDesign.ctf -------------------------------------------------------------------------------- /M_MEX_project/Deployment/FilterDesign.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/Deployment/FilterDesign.exe -------------------------------------------------------------------------------- /M_MEX_project/Deployment/FilterDesignCompiler.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/Deployment/FilterDesignCompiler.prj -------------------------------------------------------------------------------- /M_MEX_project/Deployment/FilterDesignWebApp.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/Deployment/FilterDesignWebApp.prj -------------------------------------------------------------------------------- /M_MEX_project/Deployment/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/Deployment/favicon.png -------------------------------------------------------------------------------- /M_MEX_project/Deployment/splash_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/Deployment/splash_screen.png -------------------------------------------------------------------------------- /M_MEX_project/Filter_Design.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/Filter_Design.mlapp -------------------------------------------------------------------------------- /M_MEX_project/check_num_input.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/check_num_input.m -------------------------------------------------------------------------------- /M_MEX_project/check_str_input.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/check_str_input.m -------------------------------------------------------------------------------- /M_MEX_project/check_yes_or_no.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/check_yes_or_no.m -------------------------------------------------------------------------------- /M_MEX_project/filter_bode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/filter_bode.m -------------------------------------------------------------------------------- /M_MEX_project/filter_bode_mex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/filter_bode_mex.mexw64 -------------------------------------------------------------------------------- /M_MEX_project/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/main.m -------------------------------------------------------------------------------- /M_MEX_project/main.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/main.prj -------------------------------------------------------------------------------- /M_MEX_project/main_mex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/main_mex.mexw64 -------------------------------------------------------------------------------- /M_MEX_project/plot_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/plot_filter.m -------------------------------------------------------------------------------- /M_MEX_project/test_filter_bode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/test_filter_bode.m -------------------------------------------------------------------------------- /M_MEX_project/test_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/M_MEX_project/test_main.m -------------------------------------------------------------------------------- /_Documents/Filter_Design_C_Codegen_and_Deployment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/_Documents/Filter_Design_C_Codegen_and_Deployment.pdf -------------------------------------------------------------------------------- /_Documents/Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/_Documents/Readme.pdf -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/MATLAB_Integration_with_C/HEAD/license.txt --------------------------------------------------------------------------------