Re: [Pdl-general] Plotting flat xyz data as an image.

2024-04-18 Thread Jovan Trujillo
If you look at my example code it shows that the Excel data basically has
the coordinates flattened to a list:

my $x = flat(xvals(10,10)); # This is basically how x-coordinates are
output from my machine.
my $y = flat(yvals(10,10)); # Same format as x-coordinates
my $z = sequence(100)*rand(1); # Some dummy data for this example.

This is just an example to show the structure of the data coming in. A
sample of the data in the Excel file looks like this:

X (um) Y (um) R (Ohms/sq)
174466.6 148753.6 3.205395
174438.8 149112.8 2.041845
174410.4 149471.7 2.192256
174382.7 149830.3 2.345829
174354.9 150189.4 2.256398
174326.8 150548.4 2.134265
174299.2 150907.4 2.360153
174271.1 151265.9 2.303999
174243.3 151624.9 2.437044
174215.4 151983.8 2.454804
174187.4 152343 2.407471
174159.6 152701.7 2.339043
174131.5 153060.5 2.363042
174103.9 153419.6 2.399614
174075.8 153778.4 2.352736
174047.8 154137.4 2.267724
174020.1 154496.3 2.219654
173992.3 154855.3 2.157816



I have parsed that data into $x, $y, and $z but $z needs to be mapped into
an N x N matrix for image plotting using the coordinates given in $x and
$y. The machine walks along Y and then steps to the next X coordinate when
it reaches the end of Y. All points in X and Y are expected to be unique. I
need to create the matrix using zeroes(N,N) since I know how many points I
took in X and Y, and then create a sequence that interpolates $x and $y
into matrix index values. Then use matching to know where in the matrix the
$z values belong. If there is something built into PDL to do that let me
know.

I hope this helps clarify the problem.

Thanks,
Jovan

On Thu, Apr 18, 2024 at 1:35 PM David Mertens 
wrote:

> Hello Jovan,
>
> Did you try this?
> my $z = sequence(10,10)*rand(1);
>
> Seems to me you just need a z-value pdl that has the same dimensions as
> the x and y coordinates.
>
> David
>
> On Thu, Apr 18, 2024, 1:11 PM Jovan Trujillo 
> wrote:
>
>> Hi Greg,
>> Yes, I've been looking into a heat map or flattened 3d scatterplot. In
>> Mathematica, I can easily import the Excel spreadsheet and plot using
>> ListDensityPlot to give me a nice high-resolution image of the data.
>>
>> But my question is simply a mapping problem. If I have two piddles with
>> $x and $y coordinates and a third representing the $data, how do I create a
>> $matrix that maps the $data based on the coordinates from $x and $y? If I
>> had $matrix I can simply plot image($matrix) with PDL::Graphics::Gnuplot.
>>
>> Thank you,
>> Jovan
>>
>> On Thu, Apr 18, 2024 at 1:16 AM Grégory Vanuxem 
>> wrote:
>>
>>> Hello,
>>>
>>> I haven’t carefully looked at your problem with GNUPlot but I wonder if
>>> what you are trying to achieve could not be done with surface routines,
>>> that’s with 3d ones ? Or maybe something like heatmap like this question:
>>>
>>>
>>> https://stackoverflow.com/questions/76577557/trying-to-create-heat-map-using-ggplot-similar-to-density-contour-plot-but-wh
>>>
>>> Just to give some hints on possible routines.
>>>
>>> - Greg
>>>
>>> Le jeu. 18 avr. 2024 à 01:53, Jovan Trujillo 
>>> a écrit :
>>>
>>>> Hi all,
>>>>
>>>> I've been wracking my brain all morning trying to figure this out, but
>>>> how could I convert a set of 3 1D piddles containing xyz data into a matrix
>>>> for plotting as an image using PDL::Graphics::Gnuplot? Say for example:
>>>>
>>>> use PDL;
>>>> use PDL::Graphics::Gnuplot qw/image gplot/;
>>>>
>>>> my $x = flat(xvals(10,10)); # This is basically how x-coordinates are
>>>> output from my machine.
>>>> my $y = flat(yvals(10,10)); # Same format as x-coordinates
>>>> my $z = sequence(100)*rand(1); # Some dummy data for this example.
>>>>
>>>> my $image; # How do I map $x,$y,$z into this 10x10 $image piddle?
>>>> image($image);
>>>>
>>>> That's my basic problem. How do I map $x,$y,$z data into an $image
>>>> matrix?
>>>>
>>>> Thank you,
>>>> Jovan
>>>> ___
>>>> pdl-general mailing list
>>>> pdl-general@lists.sourceforge.net
>>>> https://lists.sourceforge.net/lists/listinfo/pdl-general
>>>>
>>> ___
>> pdl-general mailing list
>> pdl-general@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/pdl-general
>>
>
___
pdl-general mailing list
pdl-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pdl-general


Re: [Pdl-general] Plotting flat xyz data as an image.

2024-04-18 Thread Jovan Trujillo
Hi Greg,
Yes, I've been looking into a heat map or flattened 3d scatterplot. In
Mathematica, I can easily import the Excel spreadsheet and plot using
ListDensityPlot to give me a nice high-resolution image of the data.

But my question is simply a mapping problem. If I have two piddles with $x
and $y coordinates and a third representing the $data, how do I create a
$matrix that maps the $data based on the coordinates from $x and $y? If I
had $matrix I can simply plot image($matrix) with PDL::Graphics::Gnuplot.

Thank you,
Jovan

On Thu, Apr 18, 2024 at 1:16 AM Grégory Vanuxem  wrote:

> Hello,
>
> I haven’t carefully looked at your problem with GNUPlot but I wonder if
> what you are trying to achieve could not be done with surface routines,
> that’s with 3d ones ? Or maybe something like heatmap like this question:
>
>
> https://stackoverflow.com/questions/76577557/trying-to-create-heat-map-using-ggplot-similar-to-density-contour-plot-but-wh
>
> Just to give some hints on possible routines.
>
> - Greg
>
> Le jeu. 18 avr. 2024 à 01:53, Jovan Trujillo 
> a écrit :
>
>> Hi all,
>>
>> I've been wracking my brain all morning trying to figure this out, but
>> how could I convert a set of 3 1D piddles containing xyz data into a matrix
>> for plotting as an image using PDL::Graphics::Gnuplot? Say for example:
>>
>> use PDL;
>> use PDL::Graphics::Gnuplot qw/image gplot/;
>>
>> my $x = flat(xvals(10,10)); # This is basically how x-coordinates are
>> output from my machine.
>> my $y = flat(yvals(10,10)); # Same format as x-coordinates
>> my $z = sequence(100)*rand(1); # Some dummy data for this example.
>>
>> my $image; # How do I map $x,$y,$z into this 10x10 $image piddle?
>> image($image);
>>
>> That's my basic problem. How do I map $x,$y,$z data into an $image
>> matrix?
>>
>> Thank you,
>> Jovan
>> ___
>> pdl-general mailing list
>> pdl-general@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/pdl-general
>>
>
___
pdl-general mailing list
pdl-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pdl-general


[Pdl-general] Plotting flat xyz data as an image.

2024-04-17 Thread Jovan Trujillo
Hi all,

I've been wracking my brain all morning trying to figure this out, but how
could I convert a set of 3 1D piddles containing xyz data into a matrix for
plotting as an image using PDL::Graphics::Gnuplot? Say for example:

use PDL;
use PDL::Graphics::Gnuplot qw/image gplot/;

my $x = flat(xvals(10,10)); # This is basically how x-coordinates are
output from my machine.
my $y = flat(yvals(10,10)); # Same format as x-coordinates
my $z = sequence(100)*rand(1); # Some dummy data for this example.

my $image; # How do I map $x,$y,$z into this 10x10 $image piddle?
image($image);

That's my basic problem. How do I map $x,$y,$z data into an $image matrix?

Thank you,
Jovan
___
pdl-general mailing list
pdl-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pdl-general


Re: [Pdl-general] $PDL::AutoLoader::Rescan = 1 on Windows 10

2024-04-17 Thread Jovan Trujillo
Yes, I will do that.

On Thu, Apr 11, 2024 at 10:57 AM Ed .  wrote:

> Hi Jovan,
>
>
>
> That’s much more helpful! Thank you.
>
>
>
> Could you edit your installed AutoLoader (use “perldoc -l PDL::AutoLoader”
> to locate it, and you might need to turn off “read-only” on it) and add
> some debugging to see what’s going on?
>
>
>
> Best regards,
>
> Ed
>
>
> --
> *From:* Jovan Trujillo 
> *Sent:* Thursday, April 11, 2024 6:19:30 PM
> *To:* Ed . 
> *Cc:* perldl 
> *Subject:* Re: [Pdl-general] $PDL::AutoLoader::Rescan = 1 on Windows 10
>
> Hi Ed,
>
> Thanks for the reply.
>
> Here is my version of Strawberry Perl installed on Windows 10 Enterprise
> Version 22H2 OS Build 19045.4291:
>
> --
>  Welcome to Strawberry Perl PDL Edition!
>  * URL - http://strawberryperl.com + http://pdl.perl.org
>  * to launch perl script run:  perl c:\my\scripts\pdl-test.pl
>  * to start PDL console run:   pdl2
>  * to update PDL run:  cpanm PDL
>  * to install extra module run:cpanm PDL::Any::Module
>   or if previous fails:ppm PDL::Any::Module
>  * or you can use dev tools like:  gcc, g++, gfortran, gmake
>  * see README.TXT for more info
> --
> Perl executable: C:\strawberry-perl\perl\bin\perl.exe
> Perl version   : 5.26.1 / MSWin32-x64-multi-thread
> PDL version: 2.087
>
> Here is an example with perldl repl:
>
> perlDL shell v1.357
>  PDL comes with ABSOLUTELY NO WARRANTY. For details, see the file
>  'COPYING' in the PDL distribution. This is free software and you
>  are welcome to redistribute it under certain conditions, see
>  the same file for details.
> ReadLines, NiceSlice, MultiLines  enabled
> Reading PDL/default.pdl...
> Found docs database C:\strawberry-perl\perl\site\lib\PDL\pdldoc.db
> Type 'help' for online help
> Type 'demo' for online demos
> Loaded PDL v2.087 (supports bad values)
>
> Note: AutoLoader not enabled ('use PDL::AutoLoader' recommended)
>
> pdl> use PDL::AutoLoader; $PDL::AuotLoader::Rescan = 1; sayHello();
> Loading sayHello.pdl ...found ./sayHello.pdl
> Hello Bob
>
> pdl> # I change "Bob" to "Fred" and save. Run again.
> pdl> sayHello();
> Hello Bob
>
> Same thing happens in pdl2:
>
> load_rcfile: got $HOME = C:\strawberry-perl\data
> load_rcfile: loading PDL/default.pdl
> Perldl2 Shell v0.008
>   PDL comes with ABSOLUTELY NO WARRANTY. For details, see the file
>   'COPYING' in the PDL distribution. This is free software and you
>   are welcome to redistribute it under certain conditions, see
>   the same file for details.
> Loaded plugins:
>   CleanErrors
>   Commands
>   Completion
>   CompletionDriver::INC
>   CompletionDriver::Keywords
>   CompletionDriver::LexEnv
>   CompletionDriver::Methods
>   DDS
>   FindVariable
>   History
>   LexEnv
>   MultiLine::PPI
>   NiceSlice
>   PDLCommands
>   Packages
>   PrintControl
>   ReadLineHistory
> Type 'help' for online help
> Type Ctrl-D or quit to exit
> Loaded PDL v2.087
>
> pdl> use PDL::AutoLoader; $PDL::AutoLoader::Rescan = 1; sayHello();
> Hello Fred
> pdl> # Change "Fred" to "Bob" and save file. Rescan doesn't notice the new
> timestamp on the file.
> pdl> sayHello();
> Hello Fred
>
> Hope this helps.
>
> Thank you,
> Jovan
>
> On Wed, Apr 10, 2024 at 5:11 PM Ed .  wrote:
>
> Hi Jovan,
>
>
>
> You’re going to need to share more information on exactly what you did and
> what happened as a result.
>
>
>
> Which versions of Perl (is it Strawberry? Which version?) and PDL are you
> running?
>
> Which REPL is it?
>
> What was the script before and after you changed it, and how do you know
> it didn’t get rescanned?
>
>
>
> Best regards,
>
> Ed
>
>
> --
> *From:* Jovan Trujillo 
> *Sent:* Wednesday, April 10, 2024 10:20:15 PM
> *To:* perldl 
> *Subject:* [Pdl-general] $PDL::AutoLoader::Rescan = 1 on Windows 10
>
> I'm trying to understand if I change a *.pdl function and save it on
> Windows 10, why doesn't PDL::AutoLoader recognize the change and reload the
> script? I have set $PDL::AutoLoader::Rescan = 1 in my REPL, but it doesn't
> work. It only runs the original *.pdl script before I changed it.
>
>
>
___
pdl-general mailing list
pdl-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pdl-general


Re: [Pdl-general] $PDL::AutoLoader::Rescan = 1 on Windows 10

2024-04-11 Thread Jovan Trujillo
Hi Ed,

Thanks for the reply.

Here is my version of Strawberry Perl installed on Windows 10 Enterprise
Version 22H2 OS Build 19045.4291:

--
 Welcome to Strawberry Perl PDL Edition!
 * URL - http://strawberryperl.com + http://pdl.perl.org
 * to launch perl script run:  perl c:\my\scripts\pdl-test.pl
 * to start PDL console run:   pdl2
 * to update PDL run:  cpanm PDL
 * to install extra module run:cpanm PDL::Any::Module
  or if previous fails:ppm PDL::Any::Module
 * or you can use dev tools like:  gcc, g++, gfortran, gmake
 * see README.TXT for more info
--
Perl executable: C:\strawberry-perl\perl\bin\perl.exe
Perl version   : 5.26.1 / MSWin32-x64-multi-thread
PDL version: 2.087

Here is an example with perldl repl:

perlDL shell v1.357
 PDL comes with ABSOLUTELY NO WARRANTY. For details, see the file
 'COPYING' in the PDL distribution. This is free software and you
 are welcome to redistribute it under certain conditions, see
 the same file for details.
ReadLines, NiceSlice, MultiLines  enabled
Reading PDL/default.pdl...
Found docs database C:\strawberry-perl\perl\site\lib\PDL\pdldoc.db
Type 'help' for online help
Type 'demo' for online demos
Loaded PDL v2.087 (supports bad values)

Note: AutoLoader not enabled ('use PDL::AutoLoader' recommended)

pdl> use PDL::AutoLoader; $PDL::AuotLoader::Rescan = 1; sayHello();
Loading sayHello.pdl ...found ./sayHello.pdl
Hello Bob

pdl> # I change "Bob" to "Fred" and save. Run again.
pdl> sayHello();
Hello Bob

Same thing happens in pdl2:

load_rcfile: got $HOME = C:\strawberry-perl\data
load_rcfile: loading PDL/default.pdl
Perldl2 Shell v0.008
  PDL comes with ABSOLUTELY NO WARRANTY. For details, see the file
  'COPYING' in the PDL distribution. This is free software and you
  are welcome to redistribute it under certain conditions, see
  the same file for details.
Loaded plugins:
  CleanErrors
  Commands
  Completion
  CompletionDriver::INC
  CompletionDriver::Keywords
  CompletionDriver::LexEnv
  CompletionDriver::Methods
  DDS
  FindVariable
  History
  LexEnv
  MultiLine::PPI
  NiceSlice
  PDLCommands
  Packages
  PrintControl
  ReadLineHistory
Type 'help' for online help
Type Ctrl-D or quit to exit
Loaded PDL v2.087

pdl> use PDL::AutoLoader; $PDL::AutoLoader::Rescan = 1; sayHello();
Hello Fred
pdl> # Change "Fred" to "Bob" and save file. Rescan doesn't notice the new
timestamp on the file.
pdl> sayHello();
Hello Fred

Hope this helps.

Thank you,
Jovan

On Wed, Apr 10, 2024 at 5:11 PM Ed .  wrote:

> Hi Jovan,
>
>
>
> You’re going to need to share more information on exactly what you did and
> what happened as a result.
>
>
>
> Which versions of Perl (is it Strawberry? Which version?) and PDL are you
> running?
>
> Which REPL is it?
>
> What was the script before and after you changed it, and how do you know
> it didn’t get rescanned?
>
>
>
> Best regards,
>
> Ed
>
>
> --
> *From:* Jovan Trujillo 
> *Sent:* Wednesday, April 10, 2024 10:20:15 PM
> *To:* perldl 
> *Subject:* [Pdl-general] $PDL::AutoLoader::Rescan = 1 on Windows 10
>
> I'm trying to understand if I change a *.pdl function and save it on
> Windows 10, why doesn't PDL::AutoLoader recognize the change and reload the
> script? I have set $PDL::AutoLoader::Rescan = 1 in my REPL, but it doesn't
> work. It only runs the original *.pdl script before I changed it.
>
>
>
___
pdl-general mailing list
pdl-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pdl-general


[Pdl-general] $PDL::AutoLoader::Rescan = 1 on Windows 10

2024-04-10 Thread Jovan Trujillo
I'm trying to understand if I change a *.pdl function and save it on
Windows 10, why doesn't PDL::AutoLoader recognize the change and reload the
script? I have set $PDL::AutoLoader::Rescan = 1 in my REPL, but it doesn't
work. It only runs the original *.pdl script before I changed it.
___
pdl-general mailing list
pdl-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pdl-general


Re: [Pdl-general] How can I get PDL-2.015 on CPAN updated with a patch?

2016-04-26 Thread Jovan Trujillo
Update:
I made a fresh install of NetBSD 7.0 on a virtual machine and compiled the
sf#407_gsl-2.0 branch successfully. Here is my test summary report, looks
like all tests pass.


Test Summary Report
---
t/bad.t   (Wstat: 0 Tests: 82 Failed: 0)
  TODO passed:   53-54
t/fits.t  (Wstat: 0 Tests: 90 Failed: 0)
  TODO passed:   13, 17, 26, 30, 39, 45, 51, 60
t/iotypes.t   (Wstat: 0 Tests: 7 Failed: 0)
  TODO passed:   1-7
t/minmax-behavior.t   (Wstat: 0 Tests: 3 Failed: 0)
  TODO passed:   1, 3
t/op-eq-warn-for-non-numeric.t (Wstat: 0 Tests: 5 Failed: 0)
  TODO passed:   5
t/ops.t   (Wstat: 0 Tests: 60 Failed: 0)
  TODO passed:   49, 51
t/pdl_from_string.t   (Wstat: 0 Tests: 113 Failed: 0)
  TODO passed:   37-39
t/primitive.t (Wstat: 0 Tests: 53 Failed: 0)
  TODO passed:   10-11
t/ufunc.t (Wstat: 0 Tests: 35 Failed: 0)
  TODO passed:   14-35
Files=134, Tests=1572, 56 wallclock secs ( 0.50 usr  0.11 sys + 23.83 cusr
4.79 csys = 29.23 CPU)
Result: PASS

On Mon, Apr 25, 2016 at 3:14 PM, Jovan Trujillo <jovan.trujil...@gmail.com>
wrote:

> Well I have an account on SDF (http://sdf.org/) and their NetBSD 7.0
> server only has g95 installed and has some trouble with pthreads. But I do
> have GSL 2.1 intalled locally.
>
>  So I disabled pthreads by modifying perldl.config "WITH_POSIX_THREADS =>
> 0" and made a symlink of g95 to f77 to get things moving. This is the error
> message I get in the end:
>
> ld: slatec/chfcm.o: relocation R_X86_64_32 against `.data' can not be used
> when making a shared object; recompile with -fPIC
> slatec/chfcm.o: could not read symbols: Bad value
> *** Error code 1
>
> If I disable SLATEC I just end up breaking on another library that needs
> -fPIC. Where should I add -fPIC in the build system?
>
>
> On Sun, Apr 24, 2016 at 9:31 PM, Derek Lamb <de...@boulder.swri.edu>
> wrote:
>
>> Hi Jovan,
>>
>> The sf#407_gsl2.0 branch is now passing all of our automated build tests,
>> so if you can try it out on what platforms you have handy, I'd appreciate
>> it.  We have a lot of Linux testers and some Windows as well, but I don't
>> know that there are any PDL developers that use NetBSD.  Tests on that
>> platform with GSL < 2.0 and GSL >= 2.0 (or even no GSL at all) would be
>> great to have before we merge that into master.
>>
>> Due to the '#' (and possibly the '.') I put in the branch name the link
>> to the branch on SF will not work, but you can still clone the repo and get
>> the branch that way, or check it out on GitHub.
>>
>> thanks!
>> Derek
>>
>> On Apr 23, 2016, at 4:54 PM, Chris Marshall <devel.chm...@gmail.com>
>> wrote:
>>
>> In my review of outstanding PDL-2.015 CPAN Testers FAIL reports,
>> I observe that the GSL-2.1 issue(s) cause many NetBSD failures.
>> There are a large number of FAIL reports for openbsd coming from
>> t/slice.t where only 17/92 tests are run.
>>
>> --Chris
>>
>> On 4/19/2016 15:17, Derek Lamb wrote:
>>
>> Hi Jovan,
>>
>> Go ahead and give it a whirl.  I have not added anything to the test
>> suite, so it'll be a compiler and execution check.  Look for branch
>> 'sf#407_gsl2.0' on SF:(
>> <https://sourceforge.net/p/pdl/code/ci/sf%23407_gsl2.0/tree/>
>> https://sourceforge.net/p/pdl/code/ci/sf%23407_gsl2.0/tree/ ; I'm
>> getting a 404 error at the moment), or on GitHub:
>> <https://github.com/PDLPorters/pdl/tree/sf%23407_gsl2.0>
>> https://github.com/PDLPorters/pdl/tree/sf%23407_gsl2.0 .
>>
>> cheers,
>> Derek
>>
>> On Apr 18, 2016, at 2:49 PM, Jovan Trujillo <jovan.trujil...@gmail.com>
>> wrote:
>>
>> Hi Derek,
>>
>> Let me know when you are ready for testing. I have various Linux,
>> NetBSD, and Windows machines ready. Can you give me a link to your git
>> branch?
>>
>> Happy to help,
>> Jovan
>>
>> On Mon, Apr 18, 2016 at 10:08 AM, Derek Lamb < <de...@boulder.swri.edu>
>> de...@boulder.swri.edu> wrote:
>>
>>> Hi Jovan,
>>>
>>> I've been working on that exact issue—I'll be pushing a new git branch
>>> for testing soon.  GSL 2.1 also included some new associated Legendre
>>> functions and deprecated some existing ones, so those changes will come out
>>> as well.  I imagine it shouldn't be too hard to get at least a CPAN
>>> developer's release made after that functionality is present.
>>>
>

Re: [Pdl-general] How can I get PDL-2.015 on CPAN updated with a patch?

2016-04-25 Thread Jovan Trujillo
Well I have an account on SDF (http://sdf.org/) and their NetBSD 7.0 server
only has g95 installed and has some trouble with pthreads. But I do have
GSL 2.1 intalled locally.

 So I disabled pthreads by modifying perldl.config "WITH_POSIX_THREADS =>
0" and made a symlink of g95 to f77 to get things moving. This is the error
message I get in the end:

ld: slatec/chfcm.o: relocation R_X86_64_32 against `.data' can not be used
when making a shared object; recompile with -fPIC
slatec/chfcm.o: could not read symbols: Bad value
*** Error code 1

If I disable SLATEC I just end up breaking on another library that needs
-fPIC. Where should I add -fPIC in the build system?


On Sun, Apr 24, 2016 at 9:31 PM, Derek Lamb <de...@boulder.swri.edu> wrote:

> Hi Jovan,
>
> The sf#407_gsl2.0 branch is now passing all of our automated build tests,
> so if you can try it out on what platforms you have handy, I'd appreciate
> it.  We have a lot of Linux testers and some Windows as well, but I don't
> know that there are any PDL developers that use NetBSD.  Tests on that
> platform with GSL < 2.0 and GSL >= 2.0 (or even no GSL at all) would be
> great to have before we merge that into master.
>
> Due to the '#' (and possibly the '.') I put in the branch name the link to
> the branch on SF will not work, but you can still clone the repo and get
> the branch that way, or check it out on GitHub.
>
> thanks!
> Derek
>
> On Apr 23, 2016, at 4:54 PM, Chris Marshall <devel.chm...@gmail.com>
> wrote:
>
> In my review of outstanding PDL-2.015 CPAN Testers FAIL reports,
> I observe that the GSL-2.1 issue(s) cause many NetBSD failures.
> There are a large number of FAIL reports for openbsd coming from
> t/slice.t where only 17/92 tests are run.
>
> --Chris
>
> On 4/19/2016 15:17, Derek Lamb wrote:
>
> Hi Jovan,
>
> Go ahead and give it a whirl.  I have not added anything to the test
> suite, so it'll be a compiler and execution check.  Look for branch
> 'sf#407_gsl2.0' on SF:(
> <https://sourceforge.net/p/pdl/code/ci/sf%23407_gsl2.0/tree/>
> https://sourceforge.net/p/pdl/code/ci/sf%23407_gsl2.0/tree/ ; I'm getting
> a 404 error at the moment), or on GitHub:
> <https://github.com/PDLPorters/pdl/tree/sf%23407_gsl2.0>
> https://github.com/PDLPorters/pdl/tree/sf%23407_gsl2.0 .
>
> cheers,
> Derek
>
> On Apr 18, 2016, at 2:49 PM, Jovan Trujillo <jovan.trujil...@gmail.com>
> wrote:
>
> Hi Derek,
>
> Let me know when you are ready for testing. I have various Linux,
> NetBSD, and Windows machines ready. Can you give me a link to your git
> branch?
>
> Happy to help,
> Jovan
>
> On Mon, Apr 18, 2016 at 10:08 AM, Derek Lamb < <de...@boulder.swri.edu>
> de...@boulder.swri.edu> wrote:
>
>> Hi Jovan,
>>
>> I've been working on that exact issue—I'll be pushing a new git branch
>> for testing soon.  GSL 2.1 also included some new associated Legendre
>> functions and deprecated some existing ones, so those changes will come out
>> as well.  I imagine it shouldn't be too hard to get at least a CPAN
>> developer's release made after that functionality is present.
>>
>> thanks,
>> Derek
>>
>> On Apr 18, 2016, at 10:25 AM, Jovan Trujillo <
>> <jovan.trujil...@gmail.com>jovan.trujil...@gmail.com> wrote:
>>
>> Hi all,
>> I have been updating to GSL-2.1 and PDL-2.015 on my various machines,
>> and keep
>> having to do this patch to make it work:
>>
>> https://sourceforge.net/p/pdl/bugs/407/
>>
>> Why hasn't anybody updated PDL-2.015 on CPAN to include this patch? Should
>> I just email the diff to Chris Marshall? Can I submit the change to the
>> Git repo?
>>
>> Thanks,
>> Jovan
>>
>>
>
>
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
pdl-general mailing list
pdl-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pdl-general


[Pdl-general] How can I get PDL-2.015 on CPAN updated with a patch?

2016-04-18 Thread Jovan Trujillo
Hi all,
I have been updating to GSL-2.1 and PDL-2.015 on my various machines,
and keep
having to do this patch to make it work:

https://sourceforge.net/p/pdl/bugs/407/

Why hasn't anybody updated PDL-2.015 on CPAN to include this patch? Should
I just email the diff to Chris Marshall? Can I submit the change to the Git
repo?

Thanks,
Jovan
--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z___
pdl-general mailing list
pdl-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pdl-general