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
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mai desouky
el 4 de Jun. de 2017
Comentada: Image Analyst
el 5 de Jun. de 2017
<<pic>>



0 comentarios
Respuesta aceptada
Image Analyst
el 4 de Jun. de 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 comentarios
Image Analyst
el 5 de Jun. de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Orange en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!