交互式2D和3D图表 JMathPlot

码农软件 · 软件分类 · 报表/图表制作 · 2019-08-20 17:44:30

软件介绍

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);

本文地址:https://codercto.com/soft/d/12795.html

大象无形:虚幻引擎程序设计浅析

大象无形:虚幻引擎程序设计浅析

罗丁力、张三 / 电子工业出版社 / 2017-4 / 65

《大象无形:虚幻引擎程序设计浅析》以两位作者本人在使用虚幻引擎过程中的实际经历为参考,包括三大部分:使用C++语言进行游戏性编程、了解虚幻引擎本身底层结构与渲染结构、编写插件扩展虚幻引擎。提供了不同于官方文档内容的虚幻引擎相关细节和有效实践。有助于读者一窥虚幻引擎本身设计的精妙之处,并能学习到定制虚幻引擎所需的基础知识,实现对其的按需定制。 《大象无形:虚幻引擎程序设计浅析》适合初步了解虚幻......一起来看看 《大象无形:虚幻引擎程序设计浅析》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

SHA 加密
SHA 加密

SHA 加密工具

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换