问题标签 [calculation]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
398 浏览

zooming - HERE Mapview:如何计算缩放级别?

示例:我有多个坐标,并希望确保静态地图图像包含所有点。现在我计算中心坐标。如何计算缩放级别以包含每个坐标?

0 投票
1 回答
40 浏览

redux - Should calculations be stored in Redux store if those are to be submitted in a request?

I have a form that asks the user to type in some numbers. Then, some calculations are made using those numbers that are stored in a Redux store. Right now I do not store the calculations in the Redux store, but just do them inside the render function of my component.

Now I need the submitted form to include those calculated values in my HTTP request. How should I go about it? Should I make the Redux store hold the calculations?

0 投票
1 回答
37 浏览

javascript - Javascript 计算无法启动/未正确执行

我正在制作一个表格,我想在其中自动进行一些计算。该表单包含一个带有一些输入的表格。Javascript 位于表单下方。由于我不知道的原因,计算不会开始或没有正确执行。

这是代码:

0 投票
1 回答
42 浏览

php - 我需要计算从下拉列表 PHP 中选择的两年之间的人口差异吗?

所以我有 2 个下拉列表,我需要从中选择一年。然后我需要显示选择的年份和那一年的人口数量。例如:

1800 年:人口:3,929,214
1900 年:人口:76,212,168
人口增加:72,282,954。

所以这是我到目前为止的代码:

我不知道如何打印所选年份和那一年的人口。
我是 PHP 新手,在此先感谢您。

0 投票
1 回答
56 浏览

c - 小费计算 - 将数字更改为小数表示

除了函数“tipConvert(tip)”之外,这里的一切都按照我想要的方式工作。

我希望它将一个数字(例如 15)更改为 .15,这将是百分比的十进制表示。

0 投票
2 回答
1000 浏览

php - 为什么我的变量在 TCPDF 中未定义?

我的 Sql 表

我用 TCPDF 创建了一个 pdf:

我希望结果是140,但我收到一条错误消息:

注意:如果我删除+标志。pdf 的创建没有错误,我得到了结果70

0 投票
2 回答
23 浏览

excel - 计算特定项目的总计数

我需要一个公式来计算项目 A、B、.. 的计数,这样我才能得到总数。

您可以在此处查看预览

预览.

任何想法该公式的外观如何?

0 投票
3 回答
433 浏览

python - 2D array element calculation using Python and without NumPy

I have an 2D array to do some calculation for each element, which in this format:

My expected results is as follow after calculation:

I wrote the following codes:

However, it has the error message:

How to amend the code to get the results I wanted? And also I don't want to import and use NumPy for doing calculation.

0 投票
2 回答
3214 浏览

sql-server - 跨多种利率计算利息

我有一张存储利率的表格,每个表格都有一个适用的开始日期。表中较晚的条目取代较早的条目。我必须使用开始日期、结束日期和金额查询此表。根据这些值,我需要最终得出一个考虑到日期跨度的不同利率的总利息金额。

我有四个利率“区间”:

我想知道的是,是否可以计算从利率为 11.5% 的时间开始到利率两次上涨至13.5%,在单个查询中。

似乎每个“乐队”的利息计算可以使用精彩的Suprotim Agarwal的示例来完成,如下所示:

(上例中的利率为 15.5%)

我遇到困难的地方是如何将计算与利率表相互关联,以便连接考虑到日期跨度的每个子部分属于哪个“波段”。

任何帮助或建议将不胜感激。

0 投票
3 回答
81 浏览

python - 在某些测试用例中,增加 while 循环不起作用

我必须定义一个函数,其中:

从一个正整数开始original,继续乘以originaln计算生成的所有倍数的总和,包括 original直到总和不再小于total。返回达到或高于给定总数所需的最小乘法数。

例如:

  1. multiply_until_total_reached (1,5,2)

    1*2=2, (1+2)<5, 2*2=4, (1+2+4)>5, 需要2次乘法

  2. multiply_until_total_reached (1,15,2)

    1*2=2, (1+2)<15, 2*2=4, (1+2+4)<15, 4*2=8, (1+2+4+8)=15, 3次乘法

我当前的代码有效,但在某些情况下返回的值偏离 1。在 1,1038,2 的情况下,我需要 9 次乘法而不是 10 次,但在 1,15,2 的情况下,我得到正确数量的 (3) 次乘法。

这是我的代码:

是什么导致它关闭?