search for: cwilcox_distr

Displaying 2 results from an estimated 2 matches for "cwilcox_distr".

2024 Jan 15
2
cwilcox - new version
...is possible (code with comments is below). I have several questions regarding the code: 1. A lot of commands in the original R code are used to handle the memory. I do not know how to do this so I skipped memory handling completely and simply allocated space to an array (see below int cwilcox_distr[(m*n+1)/2];). Since my array is 1-dimensional instead of 3-dimensional I think as a first guess that will be ok. 2. I read the documentation when and why code in R should be changed. I am not familiar enough with R to understand how this applies here. My code uses less memory - is that...
2024 Jan 16
1
cwilcox - new version
...I have several questions regarding the code: >> >> 1. A lot of commands in the original R code are used to handle the >> memory. I do not know how to do this so I skipped memory handling >> completely and simply allocated space to an array (see below int >> cwilcox_distr[(m*n+1)/2];). Since my array is 1-dimensional instead of >> 3-dimensional I think as a first guess that will be ok. >> 2. I read the documentation when and why code in R should be changed. I >> am not familiar enough with R to understand how this applies here. My code &gt...