Plotting Chebyshev polynomials using PolarPlot and FilledCurveHow can I plot a Chebyshev spiral?ContourPlot and ColorfunctionHow can I combine two color schemes for plotting?ListPlot will not color markers in accordance with my color functionArrayPlot - Question about ColorFunction and PlotLegendsListPlot with different color optionsChanging the color in my animationProjection of 3d data to 2d with ListPlot and color functionTogglerBar and Legend color mismatch

50% portfolio in single stock, JPM - appropriate for 80 year old?

How to manage publications on a local computer

Chess evaluation function

I'm from Mumbai, India. I want to travel to Europe as a tourist but my salary is low ( €190/month)

Installing gear cable guide on 80s Holdsworth

Does the Antonov An-225 have an Auxiliary Power Unit (APU)?

Setting label colour based on a field value?

If Space Shuttle flies "like a brick", why does it need the wings?

Show the acid nature of hydrogen sulfide

A short fiction about a stable-hand with rather strange charges

Why was the DC-9-80 so successful despite being obsolete almost from birth?

Driving distance between O'Hare (ORD) and Downtown Chicago is 20.5 mi and 1H 17min?

Download, upload, downstream, upstream

Paying to leave without notice in at-will employment state

At what point in time would humans notice a 21st century satellite observing them?

Equipment replacement problem

Using footnotes in fiction: children's book which can be enjoyed by adults

What was meant by the protest sign "Bundestag nach Berlin"?

How prevalent is the sound /ʑ:/ in Russian?

Are "No more healthy than" and "No more big than" both OK?

Flats (b's) in chord progressions

Why do Muslim refugees seek asylum in Europe and not in rich countries in the Middle East?

Trying to find a comic strip about "What your clothes say about you"

Interview question: If correlation doesn't imply causation, how do you detect causation?



Plotting Chebyshev polynomials using PolarPlot and FilledCurve


How can I plot a Chebyshev spiral?ContourPlot and ColorfunctionHow can I combine two color schemes for plotting?ListPlot will not color markers in accordance with my color functionArrayPlot - Question about ColorFunction and PlotLegendsListPlot with different color optionsChanging the color in my animationProjection of 3d data to 2d with ListPlot and color functionTogglerBar and Legend color mismatch






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;

.everyonelovesstackoverflowposition:absolute;height:1px;width:1px;opacity:0;top:0;left:0;pointer-events:none;








5














$begingroup$


This question is related to this answer.



What should I change in the following code to replace black color with blue color in the second image?



PolarPlot[Evaluate @ Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2], t, 0, 2 Pi]
Graphics @ FilledCurve @ Cases[%, _Line, -1]


enter image description here



enter image description here










share|improve this question










$endgroup$





















    5














    $begingroup$


    This question is related to this answer.



    What should I change in the following code to replace black color with blue color in the second image?



    PolarPlot[Evaluate @ Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2], t, 0, 2 Pi]
    Graphics @ FilledCurve @ Cases[%, _Line, -1]


    enter image description here



    enter image description here










    share|improve this question










    $endgroup$

















      5












      5








      5


      2



      $begingroup$


      This question is related to this answer.



      What should I change in the following code to replace black color with blue color in the second image?



      PolarPlot[Evaluate @ Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2], t, 0, 2 Pi]
      Graphics @ FilledCurve @ Cases[%, _Line, -1]


      enter image description here



      enter image description here










      share|improve this question










      $endgroup$




      This question is related to this answer.



      What should I change in the following code to replace black color with blue color in the second image?



      PolarPlot[Evaluate @ Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2], t, 0, 2 Pi]
      Graphics @ FilledCurve @ Cases[%, _Line, -1]


      enter image description here



      enter image description here







      plotting polynomials






      share|improve this question














      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 3 at 11:45









      Peđa TerzićPeđa Terzić

      1284 bronze badges




      1284 bronze badges























          2 Answers
          2






          active

          oldest

          votes


















          6
















          $begingroup$

          Put the styling directives before the graphics taken from the plot:



          PolarPlot[
          Evaluate@Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2],
          t, 0, 2 Pi];
          Graphics[Blue, FilledCurve@Cases[%, _Line, -1]]


          enter image description here






          share|improve this answer










          $endgroup$














          • $begingroup$
            Is it possible to change the background color as well?
            $endgroup$
            – Peđa Terzić
            Aug 3 at 12:00










          • $begingroup$
            @PeđaTerzić Have you looked up the Background option to Graphics? Just add it.
            $endgroup$
            – Michael E2
            Aug 3 at 13:04


















          3
















          $begingroup$

          plrplt = PolarPlot[Evaluate@Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2], t, 0, 2 π];


          To get different colors between layers you can sort the lines by the area of minimal bounding disk and replace Lines with Polygons:



          sorted = SortBy[-Area[BoundingRegion[#, "MinDisk"]] &] @ Cases[plrplt, Line[x_] :> x, All];

          colors = Yellow, Red, White, Blue;

          Graphics[First[colors = RotateLeft@colors], Polygon @ # & /@ sorted]


          enter image description here



          An alternative way to get the same picture is to partition sorted lines and use FilledCurve for each pair:



          Graphics[First[colors=RotateLeft@colors], FilledCurve[Line/@#]&/@ Partition[sorted, 2, 1]]



          same picture







          share|improve this answer












          $endgroup$
















            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "387"
            ;
            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: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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/4.0/"u003ecc by-sa 4.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%2fmathematica.stackexchange.com%2fquestions%2f203215%2fplotting-chebyshev-polynomials-using-polarplot-and-filledcurve%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown


























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            6
















            $begingroup$

            Put the styling directives before the graphics taken from the plot:



            PolarPlot[
            Evaluate@Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2],
            t, 0, 2 Pi];
            Graphics[Blue, FilledCurve@Cases[%, _Line, -1]]


            enter image description here






            share|improve this answer










            $endgroup$














            • $begingroup$
              Is it possible to change the background color as well?
              $endgroup$
              – Peđa Terzić
              Aug 3 at 12:00










            • $begingroup$
              @PeđaTerzić Have you looked up the Background option to Graphics? Just add it.
              $endgroup$
              – Michael E2
              Aug 3 at 13:04















            6
















            $begingroup$

            Put the styling directives before the graphics taken from the plot:



            PolarPlot[
            Evaluate@Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2],
            t, 0, 2 Pi];
            Graphics[Blue, FilledCurve@Cases[%, _Line, -1]]


            enter image description here






            share|improve this answer










            $endgroup$














            • $begingroup$
              Is it possible to change the background color as well?
              $endgroup$
              – Peđa Terzić
              Aug 3 at 12:00










            • $begingroup$
              @PeđaTerzić Have you looked up the Background option to Graphics? Just add it.
              $endgroup$
              – Michael E2
              Aug 3 at 13:04













            6














            6










            6







            $begingroup$

            Put the styling directives before the graphics taken from the plot:



            PolarPlot[
            Evaluate@Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2],
            t, 0, 2 Pi];
            Graphics[Blue, FilledCurve@Cases[%, _Line, -1]]


            enter image description here






            share|improve this answer










            $endgroup$



            Put the styling directives before the graphics taken from the plot:



            PolarPlot[
            Evaluate@Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2],
            t, 0, 2 Pi];
            Graphics[Blue, FilledCurve@Cases[%, _Line, -1]]


            enter image description here







            share|improve this answer













            share|improve this answer




            share|improve this answer










            answered Aug 3 at 11:51









            Michael E2Michael E2

            161k13 gold badges219 silver badges523 bronze badges




            161k13 gold badges219 silver badges523 bronze badges














            • $begingroup$
              Is it possible to change the background color as well?
              $endgroup$
              – Peđa Terzić
              Aug 3 at 12:00










            • $begingroup$
              @PeđaTerzić Have you looked up the Background option to Graphics? Just add it.
              $endgroup$
              – Michael E2
              Aug 3 at 13:04
















            • $begingroup$
              Is it possible to change the background color as well?
              $endgroup$
              – Peđa Terzić
              Aug 3 at 12:00










            • $begingroup$
              @PeđaTerzić Have you looked up the Background option to Graphics? Just add it.
              $endgroup$
              – Michael E2
              Aug 3 at 13:04















            $begingroup$
            Is it possible to change the background color as well?
            $endgroup$
            – Peđa Terzić
            Aug 3 at 12:00




            $begingroup$
            Is it possible to change the background color as well?
            $endgroup$
            – Peđa Terzić
            Aug 3 at 12:00












            $begingroup$
            @PeđaTerzić Have you looked up the Background option to Graphics? Just add it.
            $endgroup$
            – Michael E2
            Aug 3 at 13:04




            $begingroup$
            @PeđaTerzić Have you looked up the Background option to Graphics? Just add it.
            $endgroup$
            – Michael E2
            Aug 3 at 13:04













            3
















            $begingroup$

            plrplt = PolarPlot[Evaluate@Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2], t, 0, 2 π];


            To get different colors between layers you can sort the lines by the area of minimal bounding disk and replace Lines with Polygons:



            sorted = SortBy[-Area[BoundingRegion[#, "MinDisk"]] &] @ Cases[plrplt, Line[x_] :> x, All];

            colors = Yellow, Red, White, Blue;

            Graphics[First[colors = RotateLeft@colors], Polygon @ # & /@ sorted]


            enter image description here



            An alternative way to get the same picture is to partition sorted lines and use FilledCurve for each pair:



            Graphics[First[colors=RotateLeft@colors], FilledCurve[Line/@#]&/@ Partition[sorted, 2, 1]]



            same picture







            share|improve this answer












            $endgroup$



















              3
















              $begingroup$

              plrplt = PolarPlot[Evaluate@Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2], t, 0, 2 π];


              To get different colors between layers you can sort the lines by the area of minimal bounding disk and replace Lines with Polygons:



              sorted = SortBy[-Area[BoundingRegion[#, "MinDisk"]] &] @ Cases[plrplt, Line[x_] :> x, All];

              colors = Yellow, Red, White, Blue;

              Graphics[First[colors = RotateLeft@colors], Polygon @ # & /@ sorted]


              enter image description here



              An alternative way to get the same picture is to partition sorted lines and use FilledCurve for each pair:



              Graphics[First[colors=RotateLeft@colors], FilledCurve[Line/@#]&/@ Partition[sorted, 2, 1]]



              same picture







              share|improve this answer












              $endgroup$

















                3














                3










                3







                $begingroup$

                plrplt = PolarPlot[Evaluate@Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2], t, 0, 2 π];


                To get different colors between layers you can sort the lines by the area of minimal bounding disk and replace Lines with Polygons:



                sorted = SortBy[-Area[BoundingRegion[#, "MinDisk"]] &] @ Cases[plrplt, Line[x_] :> x, All];

                colors = Yellow, Red, White, Blue;

                Graphics[First[colors = RotateLeft@colors], Polygon @ # & /@ sorted]


                enter image description here



                An alternative way to get the same picture is to partition sorted lines and use FilledCurve for each pair:



                Graphics[First[colors=RotateLeft@colors], FilledCurve[Line/@#]&/@ Partition[sorted, 2, 1]]



                same picture







                share|improve this answer












                $endgroup$



                plrplt = PolarPlot[Evaluate@Table[n + ChebyshevT[n, t/Pi - 1], n, 0, 40, 2], t, 0, 2 π];


                To get different colors between layers you can sort the lines by the area of minimal bounding disk and replace Lines with Polygons:



                sorted = SortBy[-Area[BoundingRegion[#, "MinDisk"]] &] @ Cases[plrplt, Line[x_] :> x, All];

                colors = Yellow, Red, White, Blue;

                Graphics[First[colors = RotateLeft@colors], Polygon @ # & /@ sorted]


                enter image description here



                An alternative way to get the same picture is to partition sorted lines and use FilledCurve for each pair:



                Graphics[First[colors=RotateLeft@colors], FilledCurve[Line/@#]&/@ Partition[sorted, 2, 1]]



                same picture








                share|improve this answer















                share|improve this answer




                share|improve this answer








                edited Aug 3 at 19:59

























                answered Aug 3 at 19:21









                kglrkglr

                225k10 gold badges256 silver badges513 bronze badges




                225k10 gold badges256 silver badges513 bronze badges































                    draft saved

                    draft discarded















































                    Thanks for contributing an answer to Mathematica Stack Exchange!


                    • 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.

                    Use MathJax to format equations. MathJax reference.


                    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%2fmathematica.stackexchange.com%2fquestions%2f203215%2fplotting-chebyshev-polynomials-using-polarplot-and-filledcurve%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

                    Tamil (spriik) Luke uk diar | Nawigatjuun

                    Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

                    Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?