-
numpy.bmat(obj, ldict=None, gdict=None)
[source] -
Build a matrix object from a string, nested sequence, or array.
Parameters: obj : str or array_like
Input data. Names of variables in the current scope may be referenced, even if
obj
is a string.ldict : dict, optional
A dictionary that replaces local operands in current frame. Ignored if
obj
is not a string orgdict
isNone
.gdict : dict, optional
A dictionary that replaces global operands in current frame. Ignored if
obj
is not a string.Returns: out : matrix
Returns a matrix object, which is a specialized 2-D array.
See also
Examples
1234>>> A
=
np.mat(
'1 1; 1 1'
)
>>> B
=
np.mat(
'2 2; 2 2'
)
>>> C
=
np.mat(
'3 4; 5 6'
)
>>> D
=
np.mat(
'7 8; 9 0'
)
All the following expressions construct the same block matrix:
123456789101112131415>>> np.bmat([[A, B], [C, D]])
matrix([[
1
,
1
,
2
,
2
],
[
1
,
1
,
2
,
2
],
[
3
,
4
,
7
,
8
],
[
5
,
6
,
9
,
0
]])
>>> np.bmat(np.r_[np.c_[A, B], np.c_[C, D]])
matrix([[
1
,
1
,
2
,
2
],
[
1
,
1
,
2
,
2
],
[
3
,
4
,
7
,
8
],
[
5
,
6
,
9
,
0
]])
>>> np.bmat(
'A,B; C,D'
)
matrix([[
1
,
1
,
2
,
2
],
[
1
,
1
,
2
,
2
],
[
3
,
4
,
7
,
8
],
[
5
,
6
,
9
,
0
]])
numpy.bmat()

2025-01-10 15:47:30
Please login to continue.