- 授权协议: BSD
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: http://code.google.com/p/jmathplot/
- 软件文档: http://code.google.com/p/jmathplot/w/list
软件介绍
Provides interactive 2D/3D plot (without openGL) :
- 2D/3D scatter plot
- 2D/3D line plot
- 2D staircase plot
- 2D/3D histogram plot
- 2D/3D boxplot
- 3D grid plot
- 2D/3D quantiles on plots
实例代码:
import org.math.plot.*;
...
double[] x = ...
double[] y = ...
// create your PlotPanel (you can use it as a JPanel)
Plot2DPanel plot = new Plot2DPanel();
// add a line plot to the PlotPanel
plot.addLinePlot("my plot", x, y);
// put the PlotPanel in a JFrame, as a JPanel
JFrame frame = new JFrame("a plot panel");
frame.setContentPane(plot);
frame.setVisible(true);
Processing编程学习指南(原书第2版)
[美]丹尼尔希夫曼(Daniel Shiffman) / 李存 / 机械工业出版社 / 2017-3-1 / 99.00元
在视觉化界面中学习电脑编程的基本原理! 本书介绍了编程的基本原理,涵盖了创建最前沿的图形应用程序(例如互动艺术、实时视频处理和数据可视化)所需要的基础知识。作为一本实验风格的手册,本书精心挑选了部分高级技术进行详尽解释,可以让图形和网页设计师、艺术家及平面设计师快速熟悉Processing编程环境。 从算法设计到数据可视化,从计算机视觉到3D图形,在有趣的互动视觉媒体和创意编程的背景之......一起来看看 《Processing编程学习指南(原书第2版)》 这本书的介绍吧!
