cross_from_above deprecated in future matplotlib… replacement function?










2















It seems that matplotlib will deprecate the cross_from_above and cross_from_below functions in the upcoming version 3.1



This is a shame as they're very useful tools for "returning the indices where a 1D array crosses a threshold from above/below". See current documentation at: https://matplotlib.org/api/mlab_api.html



I can't find any discussion of this online so wonder if there are replacement functions that I should be using instead for the same functionality?










share|improve this question


























    2















    It seems that matplotlib will deprecate the cross_from_above and cross_from_below functions in the upcoming version 3.1



    This is a shame as they're very useful tools for "returning the indices where a 1D array crosses a threshold from above/below". See current documentation at: https://matplotlib.org/api/mlab_api.html



    I can't find any discussion of this online so wonder if there are replacement functions that I should be using instead for the same functionality?










    share|improve this question
























      2












      2








      2








      It seems that matplotlib will deprecate the cross_from_above and cross_from_below functions in the upcoming version 3.1



      This is a shame as they're very useful tools for "returning the indices where a 1D array crosses a threshold from above/below". See current documentation at: https://matplotlib.org/api/mlab_api.html



      I can't find any discussion of this online so wonder if there are replacement functions that I should be using instead for the same functionality?










      share|improve this question














      It seems that matplotlib will deprecate the cross_from_above and cross_from_below functions in the upcoming version 3.1



      This is a shame as they're very useful tools for "returning the indices where a 1D array crosses a threshold from above/below". See current documentation at: https://matplotlib.org/api/mlab_api.html



      I can't find any discussion of this online so wonder if there are replacement functions that I should be using instead for the same functionality?







      python numpy matplotlib indexing scipy






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 15 '18 at 3:04









      SFlowtYSFlowtY

      224




      224






















          1 Answer
          1






          active

          oldest

          votes


















          2














          There is no replacement for these functions. But they aren't very complicated. Here is the literal copy of the source code.



          def cross_from_above(x, threshold):
          """
          return the indices into *x* where *x* crosses some threshold from above.
          """
          x = np.asarray(x)
          ind = np.nonzero((x[:-1] >= threshold) & (x[1:] < threshold))[0]
          if len(ind):
          return ind+1
          else:
          return ind


          and



          def cross_from_below(x, threshold):
          """
          return the indices into *x* where *x* crosses some threshold from below.
          """
          x = np.asarray(x)
          ind = np.nonzero((x[:-1] < threshold) & (x[1:] >= threshold))[0]
          if len(ind):
          return ind+1
          else:
          return ind


          where np is numpy.



          Essentially they both contain a single line of code, which is easy to replicate or modified in any actual use case.






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53311818%2fcross-from-above-deprecated-in-future-matplotlib-replacement-function%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2














            There is no replacement for these functions. But they aren't very complicated. Here is the literal copy of the source code.



            def cross_from_above(x, threshold):
            """
            return the indices into *x* where *x* crosses some threshold from above.
            """
            x = np.asarray(x)
            ind = np.nonzero((x[:-1] >= threshold) & (x[1:] < threshold))[0]
            if len(ind):
            return ind+1
            else:
            return ind


            and



            def cross_from_below(x, threshold):
            """
            return the indices into *x* where *x* crosses some threshold from below.
            """
            x = np.asarray(x)
            ind = np.nonzero((x[:-1] < threshold) & (x[1:] >= threshold))[0]
            if len(ind):
            return ind+1
            else:
            return ind


            where np is numpy.



            Essentially they both contain a single line of code, which is easy to replicate or modified in any actual use case.






            share|improve this answer



























              2














              There is no replacement for these functions. But they aren't very complicated. Here is the literal copy of the source code.



              def cross_from_above(x, threshold):
              """
              return the indices into *x* where *x* crosses some threshold from above.
              """
              x = np.asarray(x)
              ind = np.nonzero((x[:-1] >= threshold) & (x[1:] < threshold))[0]
              if len(ind):
              return ind+1
              else:
              return ind


              and



              def cross_from_below(x, threshold):
              """
              return the indices into *x* where *x* crosses some threshold from below.
              """
              x = np.asarray(x)
              ind = np.nonzero((x[:-1] < threshold) & (x[1:] >= threshold))[0]
              if len(ind):
              return ind+1
              else:
              return ind


              where np is numpy.



              Essentially they both contain a single line of code, which is easy to replicate or modified in any actual use case.






              share|improve this answer

























                2












                2








                2







                There is no replacement for these functions. But they aren't very complicated. Here is the literal copy of the source code.



                def cross_from_above(x, threshold):
                """
                return the indices into *x* where *x* crosses some threshold from above.
                """
                x = np.asarray(x)
                ind = np.nonzero((x[:-1] >= threshold) & (x[1:] < threshold))[0]
                if len(ind):
                return ind+1
                else:
                return ind


                and



                def cross_from_below(x, threshold):
                """
                return the indices into *x* where *x* crosses some threshold from below.
                """
                x = np.asarray(x)
                ind = np.nonzero((x[:-1] < threshold) & (x[1:] >= threshold))[0]
                if len(ind):
                return ind+1
                else:
                return ind


                where np is numpy.



                Essentially they both contain a single line of code, which is easy to replicate or modified in any actual use case.






                share|improve this answer













                There is no replacement for these functions. But they aren't very complicated. Here is the literal copy of the source code.



                def cross_from_above(x, threshold):
                """
                return the indices into *x* where *x* crosses some threshold from above.
                """
                x = np.asarray(x)
                ind = np.nonzero((x[:-1] >= threshold) & (x[1:] < threshold))[0]
                if len(ind):
                return ind+1
                else:
                return ind


                and



                def cross_from_below(x, threshold):
                """
                return the indices into *x* where *x* crosses some threshold from below.
                """
                x = np.asarray(x)
                ind = np.nonzero((x[:-1] < threshold) & (x[1:] >= threshold))[0]
                if len(ind):
                return ind+1
                else:
                return ind


                where np is numpy.



                Essentially they both contain a single line of code, which is easy to replicate or modified in any actual use case.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 15 '18 at 3:16









                ImportanceOfBeingErnestImportanceOfBeingErnest

                139k13162241




                139k13162241





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53311818%2fcross-from-above-deprecated-in-future-matplotlib-replacement-function%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kleinkühnau

                    Makov (Slowakei)

                    Deutsches Schauspielhaus