cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

Create a log-space vector

a_betancourt
Level I

All-

I am new to JSL and I want to know if there is an easy way to create a log-space vector--similarly to the function in MATLAB or Numpy.

Thanks.

 

-Alvaro

1 ACCEPTED SOLUTION

Accepted Solutions


Re: Create a log-space vector

Hi,

 

This isn't built-in but fortunately isn't difficult, using the log10 function and matrices. Here are 2 examples with log output for each.

 

Cheers,

Brady

 

Names Default To Here( 1 );

//ex1: generate 9 logarithmically-spaced points between 10^3 and 10^7
lowExp = 3;
highExp = 7;
logVec1 = 10 ^ (lowExp :: highExp :: ((highExp - lowExp) / 10));
show (round(logVec1, 2));
print("\!n");

//ex2: generate 14 logarithmically-spaced points between 250 and 875
lowExp = log10(250);
highExp = log10(875);
logVec2 = 10 ^ (lowExp :: highExp :: ((highExp - lowExp) / 15));
show(round(logVec2, 2));

brady_brady_0-1616084204347.png

 

 

View solution in original post

1 REPLY 1


Re: Create a log-space vector

Hi,

 

This isn't built-in but fortunately isn't difficult, using the log10 function and matrices. Here are 2 examples with log output for each.

 

Cheers,

Brady

 

Names Default To Here( 1 );

//ex1: generate 9 logarithmically-spaced points between 10^3 and 10^7
lowExp = 3;
highExp = 7;
logVec1 = 10 ^ (lowExp :: highExp :: ((highExp - lowExp) / 10));
show (round(logVec1, 2));
print("\!n");

//ex2: generate 14 logarithmically-spaced points between 250 and 875
lowExp = log10(250);
highExp = log10(875);
logVec2 = 10 ^ (lowExp :: highExp :: ((highExp - lowExp) / 15));
show(round(logVec2, 2));

brady_brady_0-1616084204347.png