Increase the resolution of contour
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello, so I tried to plot a coast line with contour. All I did is: Loading the Data (blue=1 is land, green=0 is water) and
C=contour(U,[1 1],'r');
which gave me this image. It is fine for the coast, but is there any way to get a better resolution for the island ? It seems to be really off at some points.
0 comentarios
Respuestas (1)
Asif Iqbal
el 7 de Jun. de 2017
I had a kind of similar problem with some discreat data so what I did was use linspace function to create some equally spaced data in between the collected data to create more resolution. The problem being these are manually increased resolution. Theoretically speaking you can't get higher resolution if you don't have the data. So you have to make some. I am giving my algorithm may be you can take a similar approach to generate your code.
d1=rand(50,1); % your data
d2=zeros(500,1); % generated higher resolution data
for i=0:length(d1)-2
d2(i*10+1:((i*10)+10)) = linspace(d1(i+1),d1(i+2),10);
end
d2(491:500)=linspace(d1(end),d1(end),10);
May be you can have an idea how to do yours from this.
3 comentarios
Asif Iqbal
el 7 de Jun. de 2017
Editada: Asif Iqbal
el 7 de Jun. de 2017
In that case I guess spline might help . Use it to round up the in-between data, not just few more points.
Ver también
Categorías
Más información sobre Contour Plots en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!