Displaying 9 results from an estimated 9 matches for "kuplo".
Did you mean:
uplo
2019 Sep 11
4
Fw: Calling a LAPACK subroutine from R
....
>
> Create a folder (directory) src in the directory where your script resides.
> Create a wrapper for "dpbtrf" file in a file xdpbtrf.f that takes an integer instead of character
>
> <xdpbtrf.f>
> c intermediate for dpbtrf
>
> SUBROUTINE xDPBTRF( kUPLO, N, KD, AB, LDAB, INFO )
>
> c .. Scalar Arguments ..
> integer kUPLO
> INTEGER INFO, KD, LDAB, N
>
> c .. Array Arguments ..
> DOUBLE PRECISION AB( LDAB, * )
>
> character UPLO
> c convert integer argument to...
2019 Sep 11
4
Fw: Calling a LAPACK subroutine from R
Sorry for cross-posting, but I realized my question might be more appropriate for r-devel...
Thank you,
Giovanni
________________________________________
From: R-help <r-help-bounces at r-project.org> on behalf of Giovanni Petris <gpetris at uark.edu>
Sent: Tuesday, September 10, 2019 16:44
To: r-help at r-project.org
Subject: [R] Calling a LAPACK subroutine from R
Hello R-helpers!
2019 Sep 12
1
Calling a LAPACK subroutine from R
...e a folder (directory) src in the directory where your script resides.
>>> Create a wrapper for "dpbtrf" file in a file xdpbtrf.f that takes an integer instead of character
>>> <xdpbtrf.f>
>>> c intermediate for dpbtrf
>>> SUBROUTINE xDPBTRF( kUPLO, N, KD, AB, LDAB, INFO )
>>> c .. Scalar Arguments ..
>>> integer kUPLO
>>> INTEGER INFO, KD, LDAB, N
>>> c .. Array Arguments ..
>>> DOUBLE PRECISION AB( LDAB, * )
>>> character UPLO
>>> c...
2019 Sep 11
0
Fw: Calling a LAPACK subroutine from R
...r way to achieve what you want.
Here goes.
Create a folder (directory) src in the directory where your script resides.
Create a wrapper for "dpbtrf" file in a file xdpbtrf.f that takes an integer instead of character
<xdpbtrf.f>
c intermediate for dpbtrf
SUBROUTINE xDPBTRF( kUPLO, N, KD, AB, LDAB, INFO )
c .. Scalar Arguments ..
integer kUPLO
INTEGER INFO, KD, LDAB, N
c .. Array Arguments ..
DOUBLE PRECISION AB( LDAB, * )
character UPLO
c convert integer argument to character
if(kUPLO .eq. 1 ) then
UPLO...
2019 Sep 11
1
Fw: Calling a LAPACK subroutine from R
...; script resides.
> > Create a wrapper for "dpbtrf" file in a file xdpbtrf.f that takes
> an integer instead of character
> >
> > <xdpbtrf.f>
> > c intermediate for dpbtrf
> >
> >? ? ? ? SUBROUTINE xDPBTRF( kUPLO, N, KD, AB, LDAB, INFO )
> >
> > c? ? ? .. Scalar Arguments ..
> >? ? ? ? integer? ? ? ? ?kUPLO
> >? ? ? ? INTEGER? ? ? ? ?INFO, KD, LDAB, N
> >
> > c? .. Array Arguments ..
> >? ? ? ? DOUBLE PRECISION? ?AB( LDAB, * )
>...
2019 Sep 12
0
Calling a LAPACK subroutine from R
...>> Create a folder (directory) src in the directory where your script resides.
>> Create a wrapper for "dpbtrf" file in a file xdpbtrf.f that takes an integer instead of character
>> <xdpbtrf.f>
>> c intermediate for dpbtrf
>> SUBROUTINE xDPBTRF( kUPLO, N, KD, AB, LDAB, INFO )
>> c .. Scalar Arguments ..
>> integer kUPLO
>> INTEGER INFO, KD, LDAB, N
>> c .. Array Arguments ..
>> DOUBLE PRECISION AB( LDAB, * )
>> character UPLO
>> c convert integer argume...
2019 Sep 11
0
Fw: Calling a LAPACK subroutine from R
...y) src in the directory where your script
> resides.
> > Create a wrapper for "dpbtrf" file in a file xdpbtrf.f that takes an
> integer instead of character
> >
> > <xdpbtrf.f>
> > c intermediate for dpbtrf
> >
> > SUBROUTINE xDPBTRF( kUPLO, N, KD, AB, LDAB, INFO )
> >
> > c .. Scalar Arguments ..
> > integer kUPLO
> > INTEGER INFO, KD, LDAB, N
> >
> > c .. Array Arguments ..
> > DOUBLE PRECISION AB( LDAB, * )
> >
> > character UP...
2019 Sep 12
2
Fw: Calling a LAPACK subroutine from R
...oes.
>
> Create a folder (directory) src in the directory where your script resides.
> Create a wrapper for "dpbtrf" file in a file xdpbtrf.f that takes an integer instead of character
>
> <xdpbtrf.f>
> c intermediate for dpbtrf
>
> SUBROUTINE xDPBTRF( kUPLO, N, KD, AB, LDAB, INFO )
>
> c .. Scalar Arguments ..
> integer kUPLO
> INTEGER INFO, KD, LDAB, N
>
> c .. Array Arguments ..
> DOUBLE PRECISION AB( LDAB, * )
>
> character UPLO
> c convert integer argument to cha...
2019 Sep 12
0
Fw: Calling a LAPACK subroutine from R
...Create a wrapper for "dpbtrf" file in a file xdpbtrf.f that takes
>>>>> an integer instead of character
>>>>>
>>>>> <xdpbtrf.f>
>>>>> c intermediate for dpbtrf
>>>>>
>>>>> SUBROUTINE xDPBTRF( kUPLO, N, KD, AB, LDAB, INFO )
>>>>>
>>>>> c????? .. Scalar Arguments ..
>>>>> integer???????? kUPLO
>>>>> INTEGER???????? INFO, KD, LDAB, N
>>>>>
>>>>> c? .. Array Arguments ..
>>>>> DOUBLE PRECISION...