BookmarkSubscribeRSS Feed
stoffprof
Calcite | Level 5

I've noticed that using a non-integer index on a vector returns a value. For example, if I set

x = 1:5;

y = x[{1.2 5.7}];

then y returns a 2-vector {1, 5}.

It seems that the indexes are having the floor function applied before being used to find elements of x. Is this correct?

3 REPLIES 3
Rick_SAS
SAS Super FREQ

My experiment indicates that there is some fuzzing as well, so that x[1-epsilon] still returns x[1]:

x=1:5;

i = 2 - 10##-T(11:16);

y = x;

print i[format=20.16] y;

stoffprof
Calcite | Level 5

Isn't that what we'd expect from the floor function? Anything less than 2 (even if just epsilon) is 1?

Rick_SAS
SAS Super FREQ

Add this to the end of the previous program:

f = floor(i);

print i[format=20.16] f y;

You'll see that the conversion of noninteger subscripts is different from a simple floor.  The fuzzing of near-integer values is important to correctly handle floating point arithmetic.  If you reread my previous post, you'll see that I stated that x[1-epsilon] = x[1], not x[0] (which would be an error).

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 3 replies
  • 894 views
  • 0 likes
  • 2 in conversation