Fill contour color into the graph
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello Guys, I want to make a contour plot on this figure. Would you mind to help me?
theta = [80.86 81.36 81.82 82.38 82.98 83.64 84.28 85.12]
Intensity = [40.62 34.62 32.62 38.62 34.62 31.62 36.62 31.62] %come from theta
theta_line = linspace(0,theta(i),100)';
point_incident = llinspace(0,1,length(theta_line(:,i)))';
The figure that I want like this
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1039765/image.png)
Please help me with this. Thank you
0 comentarios
Respuestas (1)
DGM
el 21 de Jun. de 2022
Editada: DGM
el 21 de Jun. de 2022
I somehow doubt this is actually what you want, but I'll oblige.
% given
theta = [80.86 81.36 81.82 82.38 82.98 83.64 84.28 85.12]
Intensity = [40.62 34.62 32.62 38.62 34.62 31.62 36.62 31.62]
% create lines
npoints = 100;
point_incident = linspace(0,1,npoints);
th_scaled = theta.' .* point_incident;
% create contour data from lines
x = repmat(point_incident,[numel(theta) 1]);
y = th_scaled;
z = repmat(Intensity.',[1 npoints]);
% plot contour
[~,hc] = contourf(x,y,z);
hc.LineStyle = 'none';
colormap(parula)
% plot lines if you want to obscure everything
hold on
plot(point_incident,th_scaled,'w');
% set the axes background to a solid color
set(gca,'color','b')
This looks like a good way to make a graph that's not really readable. If you want to show the intensity profile vs theta at one point, that would at least be readable. The profile is simply scaled at all other points, so you can express it in relative terms.
figure
plot(theta,Intensity)
xlabel('Theta / Point')
ylabel('Intensity')
grid on
That said, I have no idea what this actually describes.
2 comentarios
DGM
el 22 de Jun. de 2022
There isn't any data beyond those lines, so there is no contour. You'd have to define that.
Ver también
Categorías
Más información sobre Contour Plots 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!