<big id="a5mua"></big>

      <tt id="a5mua"><dfn id="a5mua"></dfn></tt>
      <wbr id="a5mua"><sup id="a5mua"></sup></wbr>

        
        

      1. 亚洲综合小综合中文字幕,国产久爱免费精品视频,精品国产品香蕉在线,国产午夜精品在人线播放,精品一二三四区在线观看,国产成人无码免费看视频软件 ,色欲久久人妻内射,午夜在线观看成人av
        羅的密歐
        級別: 論壇先鋒
        精華主題: 0
        發帖數量: 151 個
        工控威望: 1935 點
        下載積分: 3451 分
        在線時間: 128(小時)
        注冊時間: 2022-07-22
        最后登錄: 2025-10-29
        查看羅的密歐的 主題 / 回貼
        樓主  發表于: 2024-05-21 09:03
        有沒有大佬幫忙的,之前同事弄了iee754,32位單精度16進制轉換十進制浮點,但是離職了。下面分享一下他編寫的,給大佬們看看
        if check == 9 and response[0]==0x02  and response[2]==0x04 then
        ma=response[5]
        mb=response[6]
        ma=ma<<8
        ma=ma+mb
        output=ma


        mc=response[3]
        mc=mc>>4
        mc=mc+1
        if mc-8>0 then
        mc=mc-8
        bin[16]=1
        end if
        if mc-4>0 then
        mc=mc-4
        bin[17]=1
        end if
        if mc-2>0 then
        mc=mc-2
        bin[18]=1
        end if
        if mc-1>0 then
        mc=mc-1
        bin[19]=1
        end if


        //IEEE754
        output=output+1
        if output-32768>0 then
        output=output-32768
        bin[0]=1
        end if
        if output-16384>0 then
        output=output-16384
        bin[1]=1
        end if
        if output-8192>0 then
        output=output-8192
        bin[2]=1
        end if
        if output-4096>0 then
        output=output-4096
        bin[3]=1
        end if
        if output-2048>0 then
        output=output-2048
        bin[4]=1
        end if
        if output-1024>0 then
        output=output-1024
        bin[5]=1
        end if
        if output-512>0 then
        output=output-512
        bin[6]=1
        end if
        if output-256>0 then
        output=output-256
        bin[7]=1
        end if
        if output-128>0 then
        output=output-128
        bin[8]=1
        end if
        if output-64>0 then
        output=output-64
        bin[9]=1
        end if
        if output-32>0 then
        output=output-32
        bin[10]=1
        end if
        if output-16>0 then
        output=output-16
        bin[11]=1
        end if
        if output-8>0 then
        output=output-8
        bin[12]=1
        end if
        if output-4>0 then
        output=output-4
        bin[13]=1
        end if
        if output-2>0 then
        output=output-2
        bin[14]=1
        end if
        if output-1>0 then
        output=output-1
        bin[15]=1
        end if

        ieee=bin[1]*128+bin[2]*64+bin[3]*32+bin[4]*16+bin[5]*8+bin[6]*4+bin[7]*2+bin[8]
        ieee=ieee-127

        select case ieee
        case 0
        ieee2=1
        break
        case 1
        ieee2=2+bin[9]
        break
        case 2
        ieee2=4+bin[9]*2+bin[10]
        break
        case 3
        ieee2=8+bin[9]*4+bin[10]*2+bin[11]
        break
        case 4
        ieee2=16+bin[9]*8+bin[10]*4+bin[11]*2+bin[12]
        break
        case 5
        ieee2=32+bin[9]*16+bin[10]*8+bin[11]*4+bin[12]*2+bin[13]
        break
        case 6
        ieee2=64+bin[9]*32+bin[10]*16+bin[11]*8+bin[12]*4+bin[13]*2+bin[14]
        break
        case 7
        ieee2=128+bin[9]*64+bin[10]*32+bin[11]*16+bin[12]*8+bin[13]*4+bin[14]*2+bin[15]
        break
        case 8
        ieee2=256+bin[9]*128+bin[10]*64+bin[11]*32+bin[12]*16+bin[13]*8+bin[14]*4+bin[15]*2+bin[16]
        break
        case 9
        ieee2=512+bin[9]*256+bin[10]*128+bin[11]*64+bin[12]*32+bin[13]*16+bin[14]*8+bin[15]*4+bin[16]*2+bin[17]
        break
        case 10
        ieee2=1024+bin[9]*512+bin[10]*256+bin[11]*128+bin[12]*64+bin[13]*32+bin[14]*16+bin[15]*8+bin[16]*4+bin[17]*2+bin[18]
        break
        case 11
        ieee2=2048+bin[9]*1024+bin[10]*512+bin[11]*256+bin[12]*128+bin[13]*64+bin[14]*32+bin[15]*16+bin[16]*8+bin[17]*4+bin[18]*2+bin[19]
        break
        end select
        //ieee754


        if bin[0]==0 then//負數時不輸出
        //SetData(output, "Local HMI", LW, 50, 1)
        //SetData(ma, "Local HMI", LW, 100, 1)
        //SetData(ieee2, "Local HMI", LW, 50, 1)
        //SetData(ieee2, "Local HMI", LW, 100, 1)
        ma=ieee2
        end if

        end if
        天下風云出我輩,一入江湖歲月催,皇圖霸業談笑中,不勝人生一場醉。

        提劍跨騎揮鬼雨,白骨如山鳥驚飛。塵事如潮人如水,只嘆江湖幾人回。
        羅的密歐
        級別: 論壇先鋒
        精華主題: 0
        發帖數量: 151 個
        工控威望: 1935 點
        下載積分: 3451 分
        在線時間: 128(小時)
        注冊時間: 2022-07-22
        最后登錄: 2025-10-29
        查看羅的密歐的 主題 / 回貼
        1樓  發表于: 2024-05-21 11:13
        是的,但是我不是正經學編程的,對這個轉換不太理解。十進制轉十六進制這種簡單的就可以
        引用
        引用第1樓ren1823于2024-05-21 09:23發表的  :
        浮點數、10進制、16進制數底層都是相同的二進制數,只是顯示方式不同而已。上面的程序就是把數的二進制格式的位一個個拆出來然后再按照二進制的位組合成10進制數
        天下風云出我輩,一入江湖歲月催,皇圖霸業談笑中,不勝人生一場醉。

        提劍跨騎揮鬼雨,白骨如山鳥驚飛。塵事如潮人如水,只嘆江湖幾人回。
        羅的密歐
        級別: 論壇先鋒
        精華主題: 0
        發帖數量: 151 個
        工控威望: 1935 點
        下載積分: 3451 分
        在線時間: 128(小時)
        注冊時間: 2022-07-22
        最后登錄: 2025-10-29
        查看羅的密歐的 主題 / 回貼
        2樓  發表于: 2024-05-21 16:02
        額,解決辦法現在不打算研究這個困難的辦法,我就弄成輸入16進制。數據轉換的讓人找手機網頁轉換
        天下風云出我輩,一入江湖歲月催,皇圖霸業談笑中,不勝人生一場醉。

        提劍跨騎揮鬼雨,白骨如山鳥驚飛。塵事如潮人如水,只嘆江湖幾人回。

        主站蜘蛛池模板: 亚洲国产午夜精品福利| 孕妇特级毛片ww无码内射| 欧美大bbbb流白水| 国产亚洲精品第一综合麻豆| 永久免费不卡在线观看黄网站| аⅴ天堂国产最新版在线中文| 精品亚洲女同一区二区| 人妻另类 专区 欧美 制服| 国产免费人成网站在线播放| 免费国产精品黄色一区二区| 粉嫩少妇内射浓精videos| 免费人妻精品一区二| 日韩av在线高清观看| 国产成人av无码永久免费一线天| 人人妻久久人人澡人人爽人人精品| 午夜福利精品国产二区| 一本大道无码日韩精品影视| 国产精品白浆免费视频| 久久SE精品一区精品二区| 国产乱子伦一区二区三区四区五区| 亚洲区一区二区三区亚洲| 51午夜精品免费视频| 91密桃精品国产91久久 | 国产麻豆天美果冻无码视频| 国产精品美女一区二区三| 好男人好资源WWW社区| 国产精品一区自拍视频| 中文国产人精品久久蜜桃| 97精品伊人久久久大香线蕉| 女人高潮被爽到呻吟在线观看 | 久草网视频在线观看| 久久99久国产麻精品66| 国产精品人妻中文字幕| 欧美日韩国产草草影院| 熟女视频一区二区三区嫩草| 妺妺窝人体色WWW看人体| 青青草综合在线观看视频| 精品一区二区免费不卡| 国产日韩在线视看高清视频手机 | 日韩丝袜欧美人妻制服| 免费人成视频网站在线18|