我需要在我的代码文档中简要讨论一些数学,我想插入一个实际的
希腊字母(小写lambda)而不是使用“lambda”这个词。我怎么能在Doxygen中做到这一点?我曾经只用一个500英尺的杆子涉猎HTML(我不是一个网络程序员),所以请原谅我的无知。我已尝试在Doxygen用户手册提及的文档中放置一个&lambda
,但不幸的是,字面意思是这样做了。
=======================编辑======================= ================================
以下是所要求的示例:
/**
* This function is used to fill an array with exponentially distributed
* random numbers. These numbers are distributed assuming rate parameter
* (λ) = 1.
*
* The output vector can be modified for an arbitrary λ by dividing
* its contents by the desired value of λ (or, preferably for speed,
* multiplying its contents by the precomputed value of 1/λ) as
* shown in the histogram below.
* @image html exponential_histogram.png
*
* @param size The size of the array to be filled.
*
* @param vector The array which the user wants to fill with random
* values. Again, it should be of type @b float.
*
* @param state The array which was initialized with the
* "DSP_urand32_init" function and maintained (but @b NEVER modified)
* by the user between subsequent calls to this function.
*/