cmatrix.Laplacian_mean

cmatrix.Laplacian_mean()

Laplacian mean matrix generator. The order have been programmed until 3.

Parameters

type

Description

order

int

the order of the computed laplacian

Returns
Matrix

The laplacian mean matrix

See also

set_ij()
size_r()
size_c()
get_ij()

Examples

>>> print(Laplacian_mean(3))
| -0.004 | -0.008 | -0.016 | -0.008 | -0.004 |
| -0.008 | -0.016 | -0.031 | -0.016 | -0.008 |
| -0.016 | -0.031 | +0.062 | -0.031 | -0.016 |
| -0.008 | -0.016 | -0.031 | -0.016 | -0.008 |
| -0.004 | -0.008 | -0.016 | -0.008 | -0.004 |
printed