1

コード ドキュメントで数学について簡単に説明する必要があり、「ラムダ」という単語を使用するのではなく、実際のギリシャ文字 (小文字のラムダ) を挿入したいと考えています。Doxygenでこれを行うにはどうすればよいですか? 以前に 500 フィートのポールで HTML に手を出したことが一度だけあります (私は決して Web プログラマーではありません)。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.
 */
4

1 に答える 1

0

以下は、さまざまな言語のメンテナーの表です:複数言語のサポート

あなたの言語を見つけてメンテナに連絡することができます (アドレスが表示されます)。

于 2013-08-15T17:12:07.583 に答える