Re: [PHP] matrix functions

2002-06-10 Thread Jason Wong
On Tuesday 11 June 2002 11:32, johannes reichardt wrote: > hi list, > > i have a question regarding a class for matrix modifications so i dont > have to re-invent the wheel ;) > > i would like to do things like this: > > matrix with 5*5 colums/rows > > x x x x x > 0 0 0 0 0 > x x x x x > x x x x x

Re: [PHP] matrix functions

2002-06-10 Thread Pushkar Pradhan
If there isn't one, (have you tried phpclasses.org etc.), I think the string functions are powerful enough. What kind of manipulations you need? Is it simple column/row transforms or doing all kinds of maptrix operations? > hi list, > > i have a question regarding a class for matrix modifications

RE: [PHP] matrix functions

2002-06-10 Thread Lazor, Ed
t;0"; $A[1][4] = "0"; $B = $C = array(); $B = $A[0]; $C = $A[1]; $A[0] = $C; $A[1] = $B; -Original Message- From: johannes reichardt [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 8:32 PM To: [EMAIL PROTECTED] Subject: [PHP] matrix functions hi list, i have a questio

[PHP] matrix functions

2002-06-10 Thread johannes reichardt
hi list, i have a question regarding a class for matrix modifications so i dont have to re-invent the wheel ;) i would like to do things like this: matrix with 5*5 colums/rows x x x x x 0 0 0 0 0 x x x x x x x x x x x x x x x x x x x x x x x x x 0 0 0 0 0 x x x x x x x x x x maybe that