Produce a 3D stem 3 plotting with a custom colormap and colorbar in Matlab2019 Community Moderator ElectionDisplay values from a matrix in a custom colormap (Matlab)Custom Matplotlib ColorBar for Scatterplotmatlab colorbar for lineplot colored by valuematplotlib.colorbar should show monochromatic red spectrumHow to build a colormap that covers multiple scales in MatlabCreating a colorbar next to my matplotlib plot w/o using the colormap to plot the dataHow to achieve the Fiji “HiLo” colormap in matplotlib image plots, to mark under and overexposed pixelsMatlab - Set 2 colorbars as 2 legends with colormap and good rangesMATLAB: Plotting only ponts with colorbar based on another variableHow map data values to colormap/colobar in Matlab

For which categories of spectra is there an explicit description of the fibrant objects via lifting properties?

What is this diamond of every day?

What are you allowed to do while using the Warlock's Eldritch Master feature?

Is a piano played in the same way as a harmonium?

Source permutation

Are all players supposed to be able to see each others' character sheets?

The meaning of ‘otherwise’

Does "Until when" sound natural for native speakers?

What is the purpose of "me" in "Je me suis trompé dans mon calcul."?

Is it possible that a question has only two answers?

Is it possible to find 2014 distinct positive integers whose sum is divisible by each of them?

What are some noteworthy "mic-drop" moments in math?

Can the alpha, lambda values of a glmnet object output determine whether ridge or Lasso?

Is this Paypal Github SDK reference really a dangerous site?

Which situations would cause a company to ground or recall a aircraft series?

How many characters using PHB rules does it take to be able to have access to any PHB spell at the start of an adventuring day?

ER diagram relationship node size adjustment

What will happen if my luggage gets delayed?

How do electrons receive energy when a body is heated?

Can one live in the U.S. and not use a credit card?

Why does Solve lock up when trying to solve the quadratic equation with large integers?

Expressing logarithmic equations without logs

Why is there an extra space when I type "ls" in the Desktop directory?

Do cubics always have one real root?



Produce a 3D stem 3 plotting with a custom colormap and colorbar in Matlab



2019 Community Moderator ElectionDisplay values from a matrix in a custom colormap (Matlab)Custom Matplotlib ColorBar for Scatterplotmatlab colorbar for lineplot colored by valuematplotlib.colorbar should show monochromatic red spectrumHow to build a colormap that covers multiple scales in MatlabCreating a colorbar next to my matplotlib plot w/o using the colormap to plot the dataHow to achieve the Fiji “HiLo” colormap in matplotlib image plots, to mark under and overexposed pixelsMatlab - Set 2 colorbars as 2 legends with colormap and good rangesMATLAB: Plotting only ponts with colorbar based on another variableHow map data values to colormap/colobar in Matlab










1















I want to plot data based on 3D coordinates, and this data must plot red dots to low values and blue dots to high values.
The colormap part I figured how to do, but when I try to use the colormap in the colorbar it doesn't show the right colors and C values;



example:



 x = [1 2 3 4 5 0 20 4]
y = [5 4 2 3 1 2 10 2]
z = [2 2 6 3 4 0 10 33]
C = [1 10 20 30 40 2 10 5] % 1 have to be red and 40 have to be blue
m = length(x);
H = ones(m,1);
for i=1:m
H(i,1) = ((C(i)-min(C))/(max(C)-min(C)))*(1-0.65) + 0.65
end
S = ones(m,1);
V = ones(m,1);
colourmap2 = hsv2rgb([H,S,V]);
f3=figure('pos', [950 50 450 450]);
set(f3,'render','zbuffer');
hold on

for i3=1:m
stem3(x(i3),y(i3),z(i3),'Color',colourmap2(i3,:)...
, 'LineStyle', 'none');
end
clc
xlabel('x'); ylabel('y'); zlabel('z');
colorbar
hold off;
view([-45,-45]);









share|improve this question









New contributor




Rodrigo Santiago is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    1















    I want to plot data based on 3D coordinates, and this data must plot red dots to low values and blue dots to high values.
    The colormap part I figured how to do, but when I try to use the colormap in the colorbar it doesn't show the right colors and C values;



    example:



     x = [1 2 3 4 5 0 20 4]
    y = [5 4 2 3 1 2 10 2]
    z = [2 2 6 3 4 0 10 33]
    C = [1 10 20 30 40 2 10 5] % 1 have to be red and 40 have to be blue
    m = length(x);
    H = ones(m,1);
    for i=1:m
    H(i,1) = ((C(i)-min(C))/(max(C)-min(C)))*(1-0.65) + 0.65
    end
    S = ones(m,1);
    V = ones(m,1);
    colourmap2 = hsv2rgb([H,S,V]);
    f3=figure('pos', [950 50 450 450]);
    set(f3,'render','zbuffer');
    hold on

    for i3=1:m
    stem3(x(i3),y(i3),z(i3),'Color',colourmap2(i3,:)...
    , 'LineStyle', 'none');
    end
    clc
    xlabel('x'); ylabel('y'); zlabel('z');
    colorbar
    hold off;
    view([-45,-45]);









    share|improve this question









    New contributor




    Rodrigo Santiago is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      1












      1








      1








      I want to plot data based on 3D coordinates, and this data must plot red dots to low values and blue dots to high values.
      The colormap part I figured how to do, but when I try to use the colormap in the colorbar it doesn't show the right colors and C values;



      example:



       x = [1 2 3 4 5 0 20 4]
      y = [5 4 2 3 1 2 10 2]
      z = [2 2 6 3 4 0 10 33]
      C = [1 10 20 30 40 2 10 5] % 1 have to be red and 40 have to be blue
      m = length(x);
      H = ones(m,1);
      for i=1:m
      H(i,1) = ((C(i)-min(C))/(max(C)-min(C)))*(1-0.65) + 0.65
      end
      S = ones(m,1);
      V = ones(m,1);
      colourmap2 = hsv2rgb([H,S,V]);
      f3=figure('pos', [950 50 450 450]);
      set(f3,'render','zbuffer');
      hold on

      for i3=1:m
      stem3(x(i3),y(i3),z(i3),'Color',colourmap2(i3,:)...
      , 'LineStyle', 'none');
      end
      clc
      xlabel('x'); ylabel('y'); zlabel('z');
      colorbar
      hold off;
      view([-45,-45]);









      share|improve this question









      New contributor




      Rodrigo Santiago is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I want to plot data based on 3D coordinates, and this data must plot red dots to low values and blue dots to high values.
      The colormap part I figured how to do, but when I try to use the colormap in the colorbar it doesn't show the right colors and C values;



      example:



       x = [1 2 3 4 5 0 20 4]
      y = [5 4 2 3 1 2 10 2]
      z = [2 2 6 3 4 0 10 33]
      C = [1 10 20 30 40 2 10 5] % 1 have to be red and 40 have to be blue
      m = length(x);
      H = ones(m,1);
      for i=1:m
      H(i,1) = ((C(i)-min(C))/(max(C)-min(C)))*(1-0.65) + 0.65
      end
      S = ones(m,1);
      V = ones(m,1);
      colourmap2 = hsv2rgb([H,S,V]);
      f3=figure('pos', [950 50 450 450]);
      set(f3,'render','zbuffer');
      hold on

      for i3=1:m
      stem3(x(i3),y(i3),z(i3),'Color',colourmap2(i3,:)...
      , 'LineStyle', 'none');
      end
      clc
      xlabel('x'); ylabel('y'); zlabel('z');
      colorbar
      hold off;
      view([-45,-45]);






      matlab plot colorbar colormap






      share|improve this question









      New contributor




      Rodrigo Santiago is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      Rodrigo Santiago is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited Mar 7 at 3:41







      Rodrigo Santiago













      New contributor




      Rodrigo Santiago is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked Mar 7 at 3:24









      Rodrigo SantiagoRodrigo Santiago

      62




      62




      New contributor




      Rodrigo Santiago is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Rodrigo Santiago is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Rodrigo Santiago is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          active

          oldest

          votes











          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
          );



          );






          Rodrigo Santiago is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55035578%2fproduce-a-3d-stem-3-plotting-with-a-custom-colormap-and-colorbar-in-matlab%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          Rodrigo Santiago is a new contributor. Be nice, and check out our Code of Conduct.









          draft saved

          draft discarded


















          Rodrigo Santiago is a new contributor. Be nice, and check out our Code of Conduct.












          Rodrigo Santiago is a new contributor. Be nice, and check out our Code of Conduct.











          Rodrigo Santiago is a new contributor. Be nice, and check out our Code of Conduct.














          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%2f55035578%2fproduce-a-3d-stem-3-plotting-with-a-custom-colormap-and-colorbar-in-matlab%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

          How to get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

          List of MPs elected to the English parliament in 1640 (April) Contents List of constituencies and members See also Notes References Navigation menueNational Archives – The Glynde Place ArchivesCobbett's Parliamentary history of England, from the Norman Conquest in 1066 to the year 1803'Aldermen in Parliament', The Aldermen of the City of London: Temp. Henry III – 1912onepage&q&f&#61, false 229