<legend id='ARGvO'><style id='ARGvO'><dir id='ARGvO'><q id='ARGvO'></q></dir></style></legend>
      • <bdo id='ARGvO'></bdo><ul id='ARGvO'></ul>

      <small id='ARGvO'></small><noframes id='ARGvO'>

      1. <i id='ARGvO'><tr id='ARGvO'><dt id='ARGvO'><q id='ARGvO'><span id='ARGvO'><b id='ARGvO'><form id='ARGvO'><ins id='ARGvO'></ins><ul id='ARGvO'></ul><sub id='ARGvO'></sub></form><legend id='ARGvO'></legend><bdo id='ARGvO'><pre id='ARGvO'><center id='ARGvO'></center></pre></bdo></b><th id='ARGvO'></th></span></q></dt></tr></i><div id='ARGvO'><tfoot id='ARGvO'></tfoot><dl id='ARGvO'><fieldset id='ARGvO'></fieldset></dl></div>
      2. <tfoot id='ARGvO'></tfoot>

        范围生成器`r_` - 具有复杂(但不是虚构)步骤的切片;使用幅度

        range builder `r_` - slice with complex (but not imaginary) step; magnitude is used(范围生成器`r_` - 具有复杂(但不是虚构)步骤的切片;使用幅度)
        • <bdo id='JoYU0'></bdo><ul id='JoYU0'></ul>

          <legend id='JoYU0'><style id='JoYU0'><dir id='JoYU0'><q id='JoYU0'></q></dir></style></legend>
            <tbody id='JoYU0'></tbody>

          <small id='JoYU0'></small><noframes id='JoYU0'>

            • <i id='JoYU0'><tr id='JoYU0'><dt id='JoYU0'><q id='JoYU0'><span id='JoYU0'><b id='JoYU0'><form id='JoYU0'><ins id='JoYU0'></ins><ul id='JoYU0'></ul><sub id='JoYU0'></sub></form><legend id='JoYU0'></legend><bdo id='JoYU0'><pre id='JoYU0'><center id='JoYU0'></center></pre></bdo></b><th id='JoYU0'></th></span></q></dt></tr></i><div id='JoYU0'><tfoot id='JoYU0'></tfoot><dl id='JoYU0'><fieldset id='JoYU0'></fieldset></dl></div>
              <tfoot id='JoYU0'></tfoot>
                1. 本文介绍了范围生成器`r_` - 具有复杂(但不是虚构)步骤的切片;使用幅度的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  玩 NumPy 连接和范围构建对象 r_ 我偶然发现了以下行为:显然,无论是实数、虚数还是适当的复数,一个复杂的步骤都将其绝对值作为类似 linspace 的步骤.

                  Playing with the NumPy concatenation and range building object r_ I stumbled over the following behavior: apparently, a complex step no matter whether real, imaginary or proper complex has its absolute value taken as the number of steps in a linspace like way.

                  >>> import numpy as np
                  >>> 
                  >>> np.r_[0:12:4]           # start : stop : step
                  array([0, 4, 8])            # that's expected
                  >>> np.r_[0:12:4j]          # start : stop : imaginary step
                  array([ 0.,  4.,  8., 12.]) # that's in the docs
                  >>> np.r_[0:12:4+0j]        # real step of complex type ?
                  array([ 0.,  4.,  8., 12.]) # this is not as far as I can tell
                  # you can even do stuff like
                  >>> np.r_[0:12:-4+3j]        # proper complex step ?
                  array([ 0.,  3.,  6.,  9., 12.])
                  

                  问题:我只是想知道这是否是官方功能,因为我找不到它的文档.

                  Question: I just wanted to know whether that's an official feature, because I couldn't find it documented.

                  为什么相关?嗯,r_ 主要是为了节省击键的便利,在某些情况下,此功能可以为您节省几个字符.

                  Why is it relevant? Well, r_ primarily being a keystroke saving convenience there are a few cases where this feature could save you a few characters.

                  推荐答案

                  代码确实取绝对值:

                  if isinstance(step, complex):
                      size.append(int(abs(step)))
                  

                  但这不是书面保证.docs 只保证虚数的行为,不保证任意复数:

                  but this is not a documented guarantee. The docs only guarantee behavior for imaginary numbers, not arbitrary complex numbers:

                  如果 step 是一个虚数(即 100j),则它的整数部分被解释为所需的点数,并且包含 start 和 stop

                  if step is an imaginary number (i.e. 100j) then its integer portion is interpreted as a number-of-points desired and the start and stop are inclusive

                  您不应依赖于非纯想象复杂输入的行为,因为它不是书面保证.

                  You should not rely on the behavior for not-purely-imaginary complex inputs, as it is not a documented guarantee.

                  也就是说,这可能是为了保证.我能够追踪 numpy.r_ 的代码的最远回溯是 这个提交.(这不是它的起源 - 我可以找到可追溯到 scipy.r_ 的引用.py" rel="nofollow noreferrer">更进一步 - 但尽管找到了对 scipy.r_ 的引用,但我还是无法找到 scipy.r_<的代码/code>,我怀疑 SciPy 和 NumPy GitHub 存储库都不包含原始代码.看起来像 这 将是正确的提交,除了 GitHub 似乎只有原始非 Git 提交的一部分.)

                  That said, it is possible that it was intended to be a guarantee. The furthest back I've been able to trace numpy.r_'s code is this commit. (That's not where it originated - I can find references to scipy.r_ dating back even further - but despite finding references to scipy.r_, I have not been able to locate the code for scipy.r_, and I suspect neither the SciPy nor NumPy GitHub repositories contain the original code. It seems like this would be the right commit, except that GitHub seems to only have a fragment of the original non-Git commit.)

                  r_ 没有记录在我可以追踪到的最早提交中,但 mgrid 也出现在该提交中,并且 mgrid'复数的类似行为在该提交中记录为

                  r_ was not documented in the earliest commit I can trace it to, but mgrid was also present in that commit, and mgrid's similar behavior for complex numbers was documented in that commit as

                  However, if the step length is a COMPLEX NUMBER (e.g. 5j), then the integer
                  part of it's magnitude is interpreted as specifying the number of points to
                  create between the start and stop values, where the stop value
                  IS INCLUSIVE.
                  

                  我能够追踪 numpy.r_ 的文档的最远距离是 此提交 7 年后,标记为从 doc wiki 合并".我相信 doc wiki 现在已经消失了,我无法确定最初是谁贡献了这些文档,但这些文档似乎不是基于 numpy.r_ 的作者的最初意图.

                  The furthest I've been able to trace numpy.r_'s documentation is this commit 7 years later, labelled "Merge from doc wiki". I believe the doc wiki is now gone, and I have been unable to determine who originally contributed those docs, but it seems likely that those docs were not based on the original intent of numpy.r_'s author.

                  这篇关于范围生成器`r_` - 具有复杂(但不是虚构)步骤的切片;使用幅度的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What happens when you compare 2 pandas Series(当你比较 2 个 pandas 系列时会发生什么)
                  Quickly find differences between two large text files(快速查找两个大文本文件之间的差异)
                  Python - Compare 2 files and output differences(Python - 比较 2 个文件和输出差异)
                  Why do comparisions between very large float values fail in python?(为什么在 python 中非常大的浮点值之间的比较会失败?)
                  Dictionary merge by updating but not overwriting if value exists(字典通过更新合并,但如果值存在则不覆盖)
                  Find entries of one text file in another file in python(在python中的另一个文件中查找一个文本文件的条目)
                    <bdo id='Pxojt'></bdo><ul id='Pxojt'></ul>
                  • <small id='Pxojt'></small><noframes id='Pxojt'>

                  • <tfoot id='Pxojt'></tfoot>
                        <tbody id='Pxojt'></tbody>

                      <legend id='Pxojt'><style id='Pxojt'><dir id='Pxojt'><q id='Pxojt'></q></dir></style></legend>
                      <i id='Pxojt'><tr id='Pxojt'><dt id='Pxojt'><q id='Pxojt'><span id='Pxojt'><b id='Pxojt'><form id='Pxojt'><ins id='Pxojt'></ins><ul id='Pxojt'></ul><sub id='Pxojt'></sub></form><legend id='Pxojt'></legend><bdo id='Pxojt'><pre id='Pxojt'><center id='Pxojt'></center></pre></bdo></b><th id='Pxojt'></th></span></q></dt></tr></i><div id='Pxojt'><tfoot id='Pxojt'></tfoot><dl id='Pxojt'><fieldset id='Pxojt'></fieldset></dl></div>