Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/krdlab/wgnuplot4cs
This project is library to control gnuplot on windows.
https://github.com/krdlab/wgnuplot4cs
Last synced: 9 days ago
JSON representation
This project is library to control gnuplot on windows.
- Host: GitHub
- URL: https://github.com/krdlab/wgnuplot4cs
- Owner: krdlab
- Created: 2012-01-07T13:42:14.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-01-07T15:07:10.000Z (almost 13 years ago)
- Last Synced: 2024-04-11T03:43:24.987Z (7 months ago)
- Language: C#
- Homepage:
- Size: 97.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wgnuplot for C Sharp
*Last Update: 2009/01/19*
## What is it?
This assembly is to control gnuplot on Windows.
## Usage
1. Download "gp***win32.zip" from http://gnuplot.info/
2. Build wgnuplot4cs (Wgnuplot.sln)
3. On your project, refer Wgnuplot.dllSample:
const string deployPath = @"C:\Tools\gnuplot\binary\";
using (Wgnuplot plot = new Wgnuplot(deployPath + "pgnuplot.exe"))
{
plot.Send("splot x**2 + y**2");
}## License
MIT License
Copyright (C) 2009 KrdLab All Rights Reserved.