SCILAB Adding legend in a plot generated by a loopAccessing the index in 'for' loops?How do I loop through or enumerate a JavaScript object?JavaScript closure inside loops – simple practical exampleHow do I break out of nested loops in Java?Looping through the content of a file in BashLoop through an array in JavaScriptHow to put the legend out of the plotSave plot to image file instead of displaying it using MatplotlibDraw legend on a plot using different colorsggplot2 legends: Adding items not in plot code to the legend & changing shapes in legend

Why can't I share a one use code with anyone else?

How might a landlocked lake become a complete ecosystem?

Why did the metro bus stop at each railway crossing, despite no warning indicating a train was coming?

Is this possible when it comes to the relations of P, NP, NP-Hard and NP-Complete?

Should generated documentation be stored in a Git repository?

How do I identify the partitions of my hard drive in order to then shred them all?

Re-testing of regression test bug fixes or re-run regression tests?

Would life always name the light from their sun "white"

How can we allow remote players to effectively interact with a physical tabletop battle-map?

Where to find every-day healthy food near Heathrow Airport?

Is it safe to use two single-pole breakers for a 240v circuit?

"The van's really booking"

Can multiple outlets be directly attached to a single breaker?

When does the attacker choose the damage type dealt by a weapon with multiple damage options?

Biology of a Firestarter

Do we have C++20 ranges library in GCC 9?

Is there any way to adjust the damage type of the Eldritch Blast cantrip so that it does fire damage?

Will the volt, ampere, ohm or other electrical units change on May 20th, 2019?

Is this a group? If so, what group is it?

complicated arrows in flowcharts

What is this old US Air Force plane?

A case where Bishop for knight isn't a good trade

Offered a new position but unknown about salary?

Can my Serbian girlfriend apply for a UK Standard Visitor visa and stay for the whole 6 months?



SCILAB Adding legend in a plot generated by a loop


Accessing the index in 'for' loops?How do I loop through or enumerate a JavaScript object?JavaScript closure inside loops – simple practical exampleHow do I break out of nested loops in Java?Looping through the content of a file in BashLoop through an array in JavaScriptHow to put the legend out of the plotSave plot to image file instead of displaying it using MatplotlibDraw legend on a plot using different colorsggplot2 legends: Adding items not in plot code to the legend & changing shapes in legend






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I´d like to know how to add legend in a plot generated by a loop in SciLab. There are 4 loops and each loop has a different legend (and colors).



I tried the code bellow. However, gives me the 4 legends but with the same color (in the case red).



inta=read("H_intacta_num.txt",-1,1500)
d1=read("H_dano1_num.txt",-1,1500)
d2=read("H_dano2_num.txt",-1,1500)
d3=read("H_dano3_num.txt",-1,1500)
leia1=read("Dados_MagN1.txt",-1,3);
frequ=leia1(:,1)

\loop1 - red (label: healthy)
for i=48:94
plot(frequ,inta(i,:),'r')
end

\loop 2 - blue (label: Damaged_L1)
for j=48:94
plot(frequ,d1(j,:),'b')
end

\loop 3 - black (label: Damaged_L2)
for j=37:72
plot(frequ,d2(j,:),'k')
end

\loop 4 - ciano (label: Damaged_L3)
for j=36:70
plot(frequ,d3(j,:),'c')
end

ylabel("Amplitude (m/s^2)/N")
xlabel("Frequency (Hz)")
p=legend(['Healthy';'Damaged_L1';'Damaged_L2';'Damaged_L3'],[2])










share|improve this question




























    0















    I´d like to know how to add legend in a plot generated by a loop in SciLab. There are 4 loops and each loop has a different legend (and colors).



    I tried the code bellow. However, gives me the 4 legends but with the same color (in the case red).



    inta=read("H_intacta_num.txt",-1,1500)
    d1=read("H_dano1_num.txt",-1,1500)
    d2=read("H_dano2_num.txt",-1,1500)
    d3=read("H_dano3_num.txt",-1,1500)
    leia1=read("Dados_MagN1.txt",-1,3);
    frequ=leia1(:,1)

    \loop1 - red (label: healthy)
    for i=48:94
    plot(frequ,inta(i,:),'r')
    end

    \loop 2 - blue (label: Damaged_L1)
    for j=48:94
    plot(frequ,d1(j,:),'b')
    end

    \loop 3 - black (label: Damaged_L2)
    for j=37:72
    plot(frequ,d2(j,:),'k')
    end

    \loop 4 - ciano (label: Damaged_L3)
    for j=36:70
    plot(frequ,d3(j,:),'c')
    end

    ylabel("Amplitude (m/s^2)/N")
    xlabel("Frequency (Hz)")
    p=legend(['Healthy';'Damaged_L1';'Damaged_L2';'Damaged_L3'],[2])










    share|improve this question
























      0












      0








      0








      I´d like to know how to add legend in a plot generated by a loop in SciLab. There are 4 loops and each loop has a different legend (and colors).



      I tried the code bellow. However, gives me the 4 legends but with the same color (in the case red).



      inta=read("H_intacta_num.txt",-1,1500)
      d1=read("H_dano1_num.txt",-1,1500)
      d2=read("H_dano2_num.txt",-1,1500)
      d3=read("H_dano3_num.txt",-1,1500)
      leia1=read("Dados_MagN1.txt",-1,3);
      frequ=leia1(:,1)

      \loop1 - red (label: healthy)
      for i=48:94
      plot(frequ,inta(i,:),'r')
      end

      \loop 2 - blue (label: Damaged_L1)
      for j=48:94
      plot(frequ,d1(j,:),'b')
      end

      \loop 3 - black (label: Damaged_L2)
      for j=37:72
      plot(frequ,d2(j,:),'k')
      end

      \loop 4 - ciano (label: Damaged_L3)
      for j=36:70
      plot(frequ,d3(j,:),'c')
      end

      ylabel("Amplitude (m/s^2)/N")
      xlabel("Frequency (Hz)")
      p=legend(['Healthy';'Damaged_L1';'Damaged_L2';'Damaged_L3'],[2])










      share|improve this question














      I´d like to know how to add legend in a plot generated by a loop in SciLab. There are 4 loops and each loop has a different legend (and colors).



      I tried the code bellow. However, gives me the 4 legends but with the same color (in the case red).



      inta=read("H_intacta_num.txt",-1,1500)
      d1=read("H_dano1_num.txt",-1,1500)
      d2=read("H_dano2_num.txt",-1,1500)
      d3=read("H_dano3_num.txt",-1,1500)
      leia1=read("Dados_MagN1.txt",-1,3);
      frequ=leia1(:,1)

      \loop1 - red (label: healthy)
      for i=48:94
      plot(frequ,inta(i,:),'r')
      end

      \loop 2 - blue (label: Damaged_L1)
      for j=48:94
      plot(frequ,d1(j,:),'b')
      end

      \loop 3 - black (label: Damaged_L2)
      for j=37:72
      plot(frequ,d2(j,:),'k')
      end

      \loop 4 - ciano (label: Damaged_L3)
      for j=36:70
      plot(frequ,d3(j,:),'c')
      end

      ylabel("Amplitude (m/s^2)/N")
      xlabel("Frequency (Hz)")
      p=legend(['Healthy';'Damaged_L1';'Damaged_L2';'Damaged_L3'],[2])







      loops plot legend scilab






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 23 at 14:27









      LVoltzLVoltz

      114




      114






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Here legend will consider the first 4 polylines in the stack, hence red ones. You can change the links this way (btw line comment is // not \)



          //loop1 - red (label: healthy)
          for i=48:94
          plot(frequ,inta(i,:),'r')
          end
          h(1)=gce()

          //loop 2 - blue (label: Damaged_L1)
          for j=48:94
          plot(frequ,d1(j,:),'b')
          end
          h(2)=gce()

          //loop 3 - black (label: Damaged_L2)
          for j=37:72
          plot(frequ,d2(j,:),'k')
          end
          h(3)=gce()

          //loop 4 - ciano (label: Damaged_L3)
          for j=36:70
          plot(frequ,d3(j,:),'c')
          end
          h(4)=gce()

          ylabel("Amplitude (m/s^2)/N")
          xlabel("Frequency (Hz)")
          p=legend(h, ['Healthy';'Damaged_L1';'Damaged_L2';'Damaged_L3'],[2])





          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%2f55314724%2fscilab-adding-legend-in-a-plot-generated-by-a-loop%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









            1














            Here legend will consider the first 4 polylines in the stack, hence red ones. You can change the links this way (btw line comment is // not \)



            //loop1 - red (label: healthy)
            for i=48:94
            plot(frequ,inta(i,:),'r')
            end
            h(1)=gce()

            //loop 2 - blue (label: Damaged_L1)
            for j=48:94
            plot(frequ,d1(j,:),'b')
            end
            h(2)=gce()

            //loop 3 - black (label: Damaged_L2)
            for j=37:72
            plot(frequ,d2(j,:),'k')
            end
            h(3)=gce()

            //loop 4 - ciano (label: Damaged_L3)
            for j=36:70
            plot(frequ,d3(j,:),'c')
            end
            h(4)=gce()

            ylabel("Amplitude (m/s^2)/N")
            xlabel("Frequency (Hz)")
            p=legend(h, ['Healthy';'Damaged_L1';'Damaged_L2';'Damaged_L3'],[2])





            share|improve this answer



























              1














              Here legend will consider the first 4 polylines in the stack, hence red ones. You can change the links this way (btw line comment is // not \)



              //loop1 - red (label: healthy)
              for i=48:94
              plot(frequ,inta(i,:),'r')
              end
              h(1)=gce()

              //loop 2 - blue (label: Damaged_L1)
              for j=48:94
              plot(frequ,d1(j,:),'b')
              end
              h(2)=gce()

              //loop 3 - black (label: Damaged_L2)
              for j=37:72
              plot(frequ,d2(j,:),'k')
              end
              h(3)=gce()

              //loop 4 - ciano (label: Damaged_L3)
              for j=36:70
              plot(frequ,d3(j,:),'c')
              end
              h(4)=gce()

              ylabel("Amplitude (m/s^2)/N")
              xlabel("Frequency (Hz)")
              p=legend(h, ['Healthy';'Damaged_L1';'Damaged_L2';'Damaged_L3'],[2])





              share|improve this answer

























                1












                1








                1







                Here legend will consider the first 4 polylines in the stack, hence red ones. You can change the links this way (btw line comment is // not \)



                //loop1 - red (label: healthy)
                for i=48:94
                plot(frequ,inta(i,:),'r')
                end
                h(1)=gce()

                //loop 2 - blue (label: Damaged_L1)
                for j=48:94
                plot(frequ,d1(j,:),'b')
                end
                h(2)=gce()

                //loop 3 - black (label: Damaged_L2)
                for j=37:72
                plot(frequ,d2(j,:),'k')
                end
                h(3)=gce()

                //loop 4 - ciano (label: Damaged_L3)
                for j=36:70
                plot(frequ,d3(j,:),'c')
                end
                h(4)=gce()

                ylabel("Amplitude (m/s^2)/N")
                xlabel("Frequency (Hz)")
                p=legend(h, ['Healthy';'Damaged_L1';'Damaged_L2';'Damaged_L3'],[2])





                share|improve this answer













                Here legend will consider the first 4 polylines in the stack, hence red ones. You can change the links this way (btw line comment is // not \)



                //loop1 - red (label: healthy)
                for i=48:94
                plot(frequ,inta(i,:),'r')
                end
                h(1)=gce()

                //loop 2 - blue (label: Damaged_L1)
                for j=48:94
                plot(frequ,d1(j,:),'b')
                end
                h(2)=gce()

                //loop 3 - black (label: Damaged_L2)
                for j=37:72
                plot(frequ,d2(j,:),'k')
                end
                h(3)=gce()

                //loop 4 - ciano (label: Damaged_L3)
                for j=36:70
                plot(frequ,d3(j,:),'c')
                end
                h(4)=gce()

                ylabel("Amplitude (m/s^2)/N")
                xlabel("Frequency (Hz)")
                p=legend(h, ['Healthy';'Damaged_L1';'Damaged_L2';'Damaged_L3'],[2])






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 24 at 16:44









                Stéphane MotteletStéphane Mottelet

                545113




                545113





























                    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%2f55314724%2fscilab-adding-legend-in-a-plot-generated-by-a-loop%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

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현