- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/alexkuz/cake-chart
软件介绍
Cake Chart 是一个 JavaScript 库,用于创建多层的扇形图。
示例代码:
import CakeChart from 'cake-chart';
const data = {
value: 100,
label: 'SUM = 100',
children: [{
value: 50,
children: [{
value: 10
},
{
value: 20
}]
}, {
value: 30
}, {
value: 20
}]
};
...
render () {
return (
<CakeChart data={data} />
);
}Iterative Methods for Sparse Linear Systems, Second Edition
Yousef Saad / Society for Industrial and Applied Mathematics / 2003-04-30 / USD 102.00
Tremendous progress has been made in the scientific and engineering disciplines regarding the use of iterative methods for linear systems. The size and complexity of linear and nonlinear systems arisi......一起来看看 《Iterative Methods for Sparse Linear Systems, Second Edition》 这本书的介绍吧!
