使用百分比查找範圍內的值 (find the value within a range using percent)


問題描述

使用百分比查找範圍內的值 (find the value within a range using percent)

我有一個數字範圍 40 到 255,其中 40 是 0%,255 是 100% 我怎樣才能得到 50% 的數字?

我嘗試搜索尋找一種方法來做到這一點,但找不到任何方法。


參考解法

方法 1:

  • You have (255‑40) = 100%
  • 1% = (255‑40)/100
  • 50% = ((255‑40)/100) * 50 = 107.5
  • Since you have offset of 40 at the beginning, 50% from offset = 107.5 + 40 = 147.5

  • </ul>

    方法 2:

    Extending @Kiran s answer with some generic Javascript

    const rangeMin = 40;
    const rangeMax = 255;
    const percentage = 50;
    
    const valueFromPercentage = (((rangeMax ‑ rangeMin) / 100) * percentage ) + rangeMin;
    
    const rangeMin = 40;
    const rangeMax = 255;
    const value = 147;
    
    const percentageFromValue = ((value ‑ rangeMin) / (rangeMax ‑ rangeMin)) * 100;
    

    方法 3:

    Any number c in an interval [a, b] can be written as a linear combination of the two endpoints c = a*x + b*(1‑x) for some x ∈ [0, 1].

    For [a, b] = [0, 100], the number c = 50 can be written as 0*0.5 + 100*0.5 so x = 0.5.

    If the interval [0, 100] is linearly mapped to [40, 255], the ratio x = 0.5 will stay the same, and so c gets mapped to c' = 40*0.5 + 255*0.5 = (40 + 255)/2 = 147.5.

    (by usupyusukeKiranPascal Lamersdxiv)

    參考文件

    1. find the value within a range using percent (CC BY‑SA 2.5/3.0/4.0)

#javascript #math






相關問題

為什麼我不能在 IE8 (javascript) 上擴展 localStorage? (Why can't I extend localStorage on IE8 (javascript)?)

在 Javascript 中打開外部 sqlite3 數據庫 (Open external sqlite3 database in Javascript)

Javascript:數組中的所有對像都具有相同的屬性 (Javascript: All Objects in Array Have Same Properties)

為什麼我們要在 javascripts 原型中添加函數? (Why do we add functions to javascripts prototype?)

顯示 URL javascript 的最後一部分? (Display the last part of URL javascript?)

Javascript XMLHttpRequest:忽略無效的 SSL 證書 (Javascript XMLHttpRequest: Ignore invalid SSL Certificate)

有沒有辦法測試 console.log 整體 (Is there a way to test for console.log entires)

如何從 javascript 對像中獲取名稱和值到新列表中? (How to get name and values from a javascript object into a new list?)

數據未發布..幫助!html,js,firebase (Data not posting.. Help! html,js,firebase)

使用 Node.js 腳本查看表單數據 (Seeing form data with Node.js script)

使用百分比查找範圍內的值 (find the value within a range using percent)

如何通過 react.js 中的組件傳遞變量或數據? (How to pass varible or data through components in react.js?)







留言討論