Borrar filtros
Borrar filtros

How to contour plot from columns of data?

3 visualizaciones (últimos 30 días)
Bacha Munir
Bacha Munir el 24 de Feb. de 2023
Comentada: Bacha Munir el 24 de Feb. de 2023
Hi. I have three columns of data. The first two columns are the x and y coordinates while the third one is the isoline column. Can anyone help me how to make a single contour plot in Matlab. I have attached the file here. Please help. Thanks.

Respuesta aceptada

Simon Chan
Simon Chan el 24 de Feb. de 2023
Use function scatter may be more suitable for you:
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/1305315/contour%20plot%20data.txt';
opts = detectImportOptions(filename);
opts.DataLines = [9 Inf];
opts.VariableNames = {'x','y','IsoLevel'};
rawdata = readtable(filename,opts);
s=scatter(rawdata.x,rawdata.y,[],rawdata.IsoLevel);
  4 comentarios
Simon Chan
Simon Chan el 24 de Feb. de 2023
You may try to use the dot as the marker and adjust the LineWidth property in order for the plot to look like a line.
s=scatter(rawdata.x,rawdata.y,[],rawdata.IsoLevel,'.','LineWidth',1);
Bacha Munir
Bacha Munir el 24 de Feb. de 2023
Okay. Thank you so much. God bless you.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Contour Plots en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by