【お知らせ】この部分は英語原文のみでの提供となります。何卒ご了承ください。
2.1.24.8.16 permrnd
Contents
Description
Pseudo-random permutation of an integer vector
Syntax
int permrnd( long * pV, uint n )
Parameters
- pV
- [input] The n integer values to be permuted
- n
- [input] The number of values to be permuted
Return
Return NE_NOERROR(0) on success, otherwise error
Examples
EX1
void permrnd_ex1() { int n = 20; vector<long> vl(n); int nRet = permrnd(vl, n); return; }
Remark
See Also
Header to Include
origin.h