View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips Bob Phillips is offline
external usenet poster
 
Posts: 1,726
Default UDF function on Matrix

Function eigen (data as Range)

where data would refer to the cells of the matrix .

--
---
HTH

Bob

(change the xxxx to gmail if mailing direct)


"Arrun" wrote in message
...
Dear all,
I want to write my own function which will calculate Eigen values of any
given matrix.
So the first line of my program is looking like:

Function eigen (data as " ") as " "

My question is what I should give in between two quotation marks above?
What
is the way to read a Matrix for this program?

Thanks and regards,