MathLabTool update announcement (231025)

MathLabTool is a mathematical simulation and graphical tool that can provide convenient tools for various needs such as mathematics-related experiments, simulations, and graphics. It can draw various 2D and 3D graphics for data, video and image processing, display real-time serial port data graphics, and encapsulate various algorithms.

https://www.oschina.net/p/mathlabtool

Updated feature list (231025):

  • Add perceptron interface.
var test_data = [
	[1, 2, 1],
	[2, 3, 1],
	[2, 1, 1],
	[2, 6, -1],
	[3, 5, -1]
];

var data = {
	eta: 0.5,
	max_iter_num: 0,
	row: test_data.length,
	col: test_data[0].length,
	data: test_data
};

var res = mlt_perceptron(data);
mlt_page_console_log(res);

Guess you like

Origin www.oschina.net/news/263364/mathlabtool-231025