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.

 채택된 답변

Simon Chan
Simon Chan 2023년 2월 24일
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

Bacha Munir
Bacha Munir 2023년 2월 24일
Yes. But could you line plot it?. I need a line plot not circle plot。
Bacha Munir
Bacha Munir 2023년 2월 24일
please help me how can I draw a line plot?. Thank you.
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 2023년 2월 24일
Okay. Thank you so much. God bless you.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Contour Plots에 대해 자세히 알아보기

제품

태그

질문:

2023년 2월 24일

댓글:

2023년 2월 24일

Community Treasure Hunt

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

Start Hunting!

Translated by