search for: koustav

Displaying 6 results from an estimated 6 matches for "koustav".

Did you mean: kostal
2017 Aug 03
1
Use case for HDF5 dataspace interface
...etrieval call to dataspace locations. So what is the usefulness in using the dataspace interface, and can I see this usefulness in a code example using the rhdf5 dataspace interface. 2. Not related to comp bio. ----------------------------------------------------------------------------------- Koustav Pal, PhD student in Computational Biology, Francesco Ferrari's group, IFOM - The FIRC Institute of Molecular Oncology Milan, Italy. On 1 August 2017 at 16:30, Bert Gunter <bgunter.4567 at gmail.com> wrote: > 1. What does this have to do with R? > > 2. If it concerns computation...
2017 Aug 01
2
Use case for HDF5 dataspace interface
...It would be great if you can provide some example use cases. Link to original question: https://stackoverflow.com/questions/44697599/hdf5-dataspace-interface-what-does-it-do-and-what-is-its-real-world-applicati ----------------------------------------------------------------------------------- Koustav Pal, PhD student in Computational Biology, Francesco Ferrari's group, IFOM - The FIRC Institute of Molecular Oncology Milan, Italy. [[alternative HTML version deleted]]
2017 Aug 01
0
Use case for HDF5 dataspace interface
...ductor Help list 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 HD...
2017 Jul 28
1
R Programming help needed - Returning dataframes + 2 Variables dynamically
...> [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...
2017 Jul 28
0
R Programming help needed - Returning dataframes + 2 Variables dynamically
...t(x) print(y) } 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 ot...
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