WSPutReal128 (C 関数)

int WSPutReal128(WSLINK link,wstpextended_double d)

拡張精度浮動小数点数dlink で指定されたWSTP接続に置く.

詳細

  • WSPutReal128()はエラーがあると0を返し,それ以外の場合には0以外の値を返す.
  • WSError()を使うと,WSPutReal128()が不成功の場合にエラーコードを引き出すことができる.
  • WSPutReal128()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

/* put the expression Sqrt[2.70001] to a link */

void f(WSLINK lp)
{
    if(! WSPutFunction(lp, "Sqrt", 1))
        { /* unable to put Sqrt[] to lp */ }

    if(! WSPutReal128(lp, 2.70001))
        { /* unable to put 2.70001 to lp */ }

    if(! WSEndPacket(lp))
        { /* unable to put the end-of-packet sequence to lp */ }

    if(! WSFlush(lp))
        { /* unable to flush any output buffered in lp */ }
}