How can i draw a color map from spread sheet in excel? In excel, I have the second attached figure where x=wave length,y=Abs., and legend = doping conc. I want to draw them like the attached color map. attached image from excel shows the data
2 views (last 30 days)
Show older comments
Accepted Answer
Image Analyst
on 4 Jun 2017
This code will make that red, white, and blue patriotic colormap:
numColors = 256;
ramp = linspace(0, 1, numColors/2)';
rampFlipped = linspace(1, 0, numColors/2)';
flat = ones(numColors/2, 1);
redColorMap = [flat; rampFlipped];
greenColorMap = [ramp; rampFlipped];
blueColorMap = [ramp; flat];
blueRedColorMap = [redColorMap, greenColorMap, blueColorMap];
colorbar();
colormap(blueRedColorMap);
2 Comments
Image Analyst
on 5 Jun 2017
The data in the workbook defines curves where there is just one value for one wavelength - not a bunch of values for a wavelength which would be an image. These curves seem to be shown over the image as faint curves. They seemed to somehow use all three 1-D curves in building the 2-D image. I have no idea how they did that. You'll have to ask someone else.
More Answers (0)
See Also
Categories
Find more on Orange in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

