How to plot the graph from the data table as attached.

2 ビュー (過去 30 日間)
mohd akmal masud
mohd akmal masud 2023 年 11 月 10 日
コメント済み: mohd akmal masud 2023 年 11 月 10 日
Dear all,
I have the data table as attached,
Anyone can help me how to plot the graph from the data table as attached,
Then I want to apply the gaussian filter for smoothing the data.

採用された回答

KSSV
KSSV 2023 年 11 月 10 日
編集済み: KSSV 2023 年 11 月 10 日
load matlab.mat ;
x = LineProfile.(1) ;
y = LineProfile.(2) ;
plot(X,y,'r')
hold on
plot(x,smooth(y),'b')
  4 件のコメント
KSSV
KSSV 2023 年 11 月 10 日
You have the data, go ahead with the function use the variable y.
mohd akmal masud
mohd akmal masud 2023 年 11 月 10 日
Dear @KSSV,
I used this command:
clc
clear all
close all
load matlab.mat ;
x = LineProfile.(1) ;
y = LineProfile.(2) ;
plot(x,y,'r')
hold on
plot(x,smoothdata(y),'b')
where I smoothdata(y), and the graph plot as right.
what I want is like the left picture, the red line
can help me?

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by