Changes between Version 6 and Version 7 of spec/Ifl


Ignore:
Timestamp:
Dec 20, 2022, 10:12:25 AM (17 months ago)
Author:
fujisft-kaji
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • spec/Ifl

    v6 v7  
    77[[BR]]
    88
    9 {{{#!comment
    10 [執筆開始時削除エリア]ここから
    11 ※コメントごと削除してください
    12 }}}
    13 * '''本項目は、まだ執筆されていません'''
    14 * '''要望等ございましたら、[wiki: Wikiトップページ]にあります[wiki:#本サイトに関して 問い合わせ先]までお願いします'''
    15 ----
    16 {{{#!comment
    17 [執筆開始時削除エリア]ここまで
    18 ※コメントごと削除してください
    19 }}}
     9= 概要 =
    2010
    21 = 概要 =
     11* API一覧
     12
     13  ||= API =||= ID[[BR]][Dec] =||= ID[[BR]][Hex] =||= R21-11 =||
     14  || [#Ifl_DPSearch_f32 Ifl_DPSearch_f32]                 ||   1|| 0x01||  ○  ||
     15  || [#Ifl_IpoCur_f32 Ifl_IpoCur_f32]                     ||   4|| 0x04||  ○  ||
     16  || [#Ifl_IpoMap_f32 Ifl_IpoMap_f32]                     ||   5|| 0x05||  ○  ||
     17  || [#Ifl_Interpolate_f32 Ifl_Interpolate_f32]           ||   6|| 0x06||  ○  ||
     18  || [#Ifl_IntIpoCur_f32_f32 Ifl_IntIpoCur_f32_f32]       ||  16|| 0x10||  ○  ||
     19  || [#Ifl_IntIpoMap_f32f32_f32 Ifl_IntIpoMap_f32f32_f32] ||  17|| 0x11||  ○  ||
     20  || [#Ifl_GetVersionInfo Ifl_GetVersionInfo]             || 255|| 0xFF||  ○  ||
    2221
    2322----
     
    2524= API仕様 =
    2625
    27 ----
     26== Ifl_DPSearch_f32 ==
     27{{{
     28void Ifl_DPSearch_f32 (Ifl_DPResultF32_Type* dpResult, float32 Xin, uint32 N, const float32* X_array)
     29}}}
    2830
    29 = コンフィギュレーション仕様 =
     31== Ifl_IpoCur_f32 ==
     32{{{
     33float32 Ifl_IpoCur_f32 (const Ifl_DPResultF32_Type* dpResult, const float32* Val_array)
     34}}}
     35
     36== Ifl_IpoMap_f32 ==
     37{{{
     38float32 Ifl_IpoMap_f32 (const Ifl_DPResultF32_Type* dpResultX, const Ifl_DPResultF32_Type* dpResultY, uint32 num_value, const float32* Val_array)
     39}}}
     40
     41== Ifl_Interpolate_f32 ==
     42{{{
     43float32 Ifl_Interpolate_f32 (float32 Value1, float32 Value2, float32 Coef)
     44}}}
     45
     46== Ifl_IntIpoCur_f32_f32 ==
     47{{{
     48float32 Ifl_IntIpoCur_f32_f32 (float32 X_in, uint32 N, const float32* X_array, const float32* Val_array)
     49}}}
     50
     51== Ifl_IntIpoMap_f32f32_f32 ==
     52{{{
     53float32 Ifl_IntIpoMap_f32f32_f32 (float32 Xin, float32 Yin, uint32 Nx, uint32 Ny, const float32* X_array, const float32* Y_array, const float32* Val_array)
     54}}}
     55
     56== Ifl_GetVersionInfo ==
     57{{{
     58void Ifl_GetVersionInfo (Std_VersionInfoType* versioninfo)
     59}}}
     60