English 中文(简体)
MKLIntel C++和准地数字生成器
原标题:MKL Intel C++ and quasi-random numbers generator

我正在使用MKLIntel进行随机数字计算。 我使用Quasi随机 al。 此外,在我看来,产生的数量并非随意。 我的理解是,Quesi随机藻类将提供样本点,最大限度地实现空间占领。 因此,它们不需要完全出乎意料和随机,而只是要妥善地覆盖空间。

我谨随意使用这一编号,不要按预期方式下令这样做,以便在使用这些随机点之前,我向他们致敬。

我没有适当使用MKL图书馆? 还是正常的,因为正如我提到的那样,要点是涵盖整个空间,而不是随意使用。

如果是某些MKL或准随机基因。 那里的用户欢迎提供意见。

问题。

最佳回答

在理论上,任何统一分配顺序的随机变动应导致随机抽样。 例如,请1,2,3, ......, n, 并随意加以侵扰, 并随机进行统一取样。

随机下调算法的质量对于由此产生的样本的质量至关重要。

与此同时,我想知道,为什么你们完全需要来自科索沃解放军的准多数民族国家。 对我来说,这只是一个高技能。 如果你需要良好的假体,那么利用来自MKL的其他RNG,例如MT19937或MT2203或SFMT19937,可能具有意义,因为这些技术是快速的,质量很高的。 请解释为什么你们需要一个准等级顺序作为通勤的基础?

Regards, Sergey

问题回答

暂无回答




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签