BookmarkSubscribeRSS Feed
LineMoon
Lapis Lazuli | Level 10

Hello expert,

My question is about EIGVEC function

 

Why for the same Matrix : M

in SAS  IML

H=eigvec(M) gives this error:

ERROR :Floating zero divide

 

In R software

if we write

eigen(V) gives the rusults.

We do not get an error.

So, why we have an error in sas, but we do not have an orror in R

Thank you

6 REPLIES 6
Reeza
Super User

Not to sound like a broken record, but please post data so we can replicate your issue. 

Rick_SAS
SAS Super FREQ

Eigenvectors are not unique, so in general you shouldn't expect that two software packages will compute the same set of eigenvectors.

However, it is interesting that one package stops with an error.

 

There are several reasons why SAS/IML could fail to give an answer, but it is impossible to guess without seeing the data. If you think the computation is incorrect, please open a track with SAS technical support and provide your version of SAS, the data, and the program.

LineMoon
Lapis Lazuli | Level 10
thank that s very kind from you.
please,can you give somme of them



Rick_SAS
SAS Super FREQ

Anything I say would be purely conjecture. The reasons are typically related to the data (matrix). Numerical linear algebra computations are sensitive to the condition number of a matrix. So, for example, if your matrix is ill conditioned then numerical computations could be unstable and small roundoff errors could  accumulate.

LineMoon
Lapis Lazuli | Level 10

Thank you.

 

SAS still usually uses this method to calculate eigvec , in page 518 ?

http://www.okstate.edu/sas/v7/saspdf/iml/chap17.pdf

 

For dbbeugging the IML program,

when I make call for eigvec(A)

I will possible to have somme options in sas 9.2 under unix to do this:

- stop running after the error message.

-debeugging the call of eigvec or making a break point

 

Rick_SAS
SAS Super FREQ

A few comments:

1. You cannont conclude that "SAS uses this method."  Different parts of SAS use different eigenvector computations, including sparse algorithms, multithreaded algorithms, and symmetric vs unsymmetric algorithms.

2. SAS 9.2 is very old... from 2008. It is possible that this problem does not exist in more recent releases.

3. You should open a track with Technical Support so that the SAS developers can determine the source of the problem.  Without seeing your matrix, there is no way to proceed.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 6 replies
  • 988 views
  • 3 likes
  • 3 in conversation