Effacer les filtres
Effacer les filtres

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

4 vues (au cours des 30 derniers jours)
mohd akmal masud
mohd akmal masud le 10 Nov 2023
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.

Réponse acceptée

KSSV
KSSV le 10 Nov 2023
Modifié(e) : KSSV le 10 Nov 2023
load matlab.mat ;
x = LineProfile.(1) ;
y = LineProfile.(2) ;
plot(X,y,'r')
hold on
plot(x,smooth(y),'b')
  4 commentaires
KSSV
KSSV le 10 Nov 2023
You have the data, go ahead with the function use the variable y.
mohd akmal masud
mohd akmal masud le 10 Nov 2023
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?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by