contourf with more colours
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mepe
el 27 de Mayo de 2020
Editada: Abdolkarim Mohammadi
el 27 de Mayo de 2020
With the function contourf I created the picture below. I would like to have more color gradations in it. I succeeded in the colorbar.
Does anyone have an idea?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/303769/image.jpeg)
0 comentarios
Respuesta aceptada
Ameer Hamza
el 27 de Mayo de 2020
You can specify the 4 input argument to contourf() to specify the number of levels you want.
contourf(x,y,z,50); % 50 levels will be created
0 comentarios
Más respuestas (1)
Abdolkarim Mohammadi
el 27 de Mayo de 2020
Editada: Abdolkarim Mohammadi
el 27 de Mayo de 2020
This works for both contour and contourf. You can either tell MATLAB how many levels you want.
contour (X,Y,Z, levels);
If levels is a positive integer, it tells MATLAB how many levels you want. If levels is a vector, it tells MATLAB at which specific heights of Z you want levels to be drawn.
0 comentarios
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!