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

          Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

          Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

          How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page