Displaying 6 results from an estimated 6 matches for "koustavpal".
2017 Aug 03
1
Use case for HDF5 dataspace interface
...t
>
>
> Bert Gunter
>
> "The trouble with having an open mind is that people keep coming along
> and sticking things into it."
> -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
>
>
> On Tue, Aug 1, 2017 at 2:28 AM, Koustav Pal <koustavpal.devel at gmail.com>
> wrote:
> > This question is a clone of my stackoverflow question which never got
> > answered (o_O). Therefore I am posting it here. I would really like some
> > inputs if possible.
> >
> > I am currently building some applications which mak...
2017 Aug 01
0
Use case for HDF5 dataspace interface
...may be a better place to post.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Tue, Aug 1, 2017 at 2:28 AM, Koustav Pal <koustavpal.devel at gmail.com> wrote:
> This question is a clone of my stackoverflow question which never got
> answered (o_O). Therefore I am posting it here. I would really like some
> inputs if possible.
>
> I am currently building some applications which make use of HDF5 files.
>
>...
2017 Aug 01
2
Use case for HDF5 dataspace interface
This question is a clone of my stackoverflow question which never got
answered (o_O). Therefore I am posting it here. I would really like some
inputs if possible.
I am currently building some applications which make use of HDF5 files.
I have already taken a look at the hdfgroup website with regards to
dataspace <https://support.hdfgroup.org/HDF5/doc/H5.user/Dataspaces.html>
and I think I
2017 Jul 28
0
R Programming help needed - Returning dataframes + 2 Variables dynamically
...Wrong output :
[1] "Passed Values"
[1] 0
[1] 0
[1] "After addition :"
[1] 1
[1] 1
[1] "Returned Values :"
[1] 0
[1] 0
With Regards,
Vijaya Kumar Regati
Technical Lead, M3bi India Private Ltd
Work: 040-67064732
________________________________
From: Koustav Pal <koustavpal.devel at gmail.com>
Sent: Friday, July 28, 2017 12:25:54 PM
To: Vijaya Kumar Regati
Cc: vijaykr.sas at gmail.com; r-help at R-project.org
Subject: Re: [R] R Programming help needed - Returning dataframes + 2 Variables dynamically
c() is used for constructing vectors. Or in other words using the...
2017 Jul 28
4
R Programming help needed - Returning dataframes + 2 Variables dynamically
c() is used for constructing vectors. Or in other words using the method
c(x,y) provides a vector of length 2 (hopefully). Therefore, you are
pushing a single vector to your function and not two arguments as you want.
It should be Logic_fn(x,y) not Logic_fn(c(x,y)).
Furthermore, i would recommend reading up on how function constructs work.
Two return statements within a function are redundant
2017 Jul 28
1
R Programming help needed - Returning dataframes + 2 Variables dynamically
...fter addition :"
> [1] 1
> [1] 1
> [1] "Returned Values :"
> [1] 0
> [1] 0
>
>
> With Regards,
> Vijaya Kumar Regati
> Technical Lead, M3bi India Private Ltd
> Work: 040-67064732
>
> ________________________________
> From: Koustav Pal <koustavpal.devel at gmail.com>
> Sent: Friday, July 28, 2017 12:25:54 PM
> To: Vijaya Kumar Regati
> Cc: vijaykr.sas at gmail.com; r-help at R-project.org
> Subject: Re: [R] R Programming help needed - Returning dataframes + 2 Variables dynamically
>
> c() is used for constructing vector...