[SciPy-user] Usage of block matrices in scipy
Gary Pajer
gpajer at rider.edu
Thu Sep 23 09:28:56 EDT 2004
Alan G Isaac wrote:
>On Thu, 23 Sep 2004, Nils Wagner apparently wrote:
>
>
>>How can I introduce block matrices in scipy;
>>given matrices A and B of appropraite order, I would like to build matrices
>>of the form
>>C = [A B]
>>or
>>C = [A; B]
>>
>>
>
>Do you need the blocks to be identifiable after building?
>If not, just use concatenate.
>
>
see also the concatenate abbreviations:
c = r_[a,b]
and
c = c_[a,b]
-g
More information about the SciPy-User
mailing list