unsafe fn R_max_col(
matrix: *const f64,
nr: *const c_int,
nc: *const c_int,
maxes: *mut c_int,
ties_meth: *const c_int,
)Expand description
Find column maxima in a matrix.
ยงParameters
matrix: Column-major matrix datanr: Number of rowsnc: Number of columnsmaxes: Output array for column maxima indices (1-indexed)ties_meth: How to handle ties (1=first, 2=random, 3=last) Checked wrapper forR_max_col. CallsR_max_col_uncheckedand routes throughwith_r_thread. Generated from source location line 3623, column 8. Generated from source fileminiextendr-api/src/ffi.rs.