Email: helpdesk@telkomuniversity.ac.id

This Portal for internal use only!

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • IBM
  • Visual Paradigm
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Office
      • Windows
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Categories
  • Microsoft
    • Microsoft Apps
    • Office
    • Operating System
    • VLS
    • Developer Tools
    • Productivity Tools
    • Database
    • AI + Machine Learning
    • Middleware System
    • Learning Services
    • Analytics
    • Networking
    • Compute
    • Security
    • Internet Of Things
  • Adobe
  • Matlab
  • Google
  • Visual Paradigm
  • WordPress
    • Plugin WP
    • Themes WP
  • Opensource
  • Others
More Categories Less Categories
  • Get Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • My Account
    • Download
    • Cart
    • Checkout
    • Login
  • About Us
    • Contact
    • Forum
    • Frequently Questions
    • Privacy Policy
  • Forum
    • News
      • Category
      • News Tag

iconTicket Service Desk

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • IBM
  • Visual Paradigm
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Office
      • Windows
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Menu
  • Home
    • Download Application Package Repository Telkom University
    • Application Package Repository Telkom University
    • Download Official License Telkom University
    • Download Installer Application Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • All Pack
    • Microsoft
      • Operating System
      • Productivity Tools
      • Developer Tools
      • Database
      • AI + Machine Learning
      • Middleware System
      • Networking
      • Compute
      • Security
      • Analytics
      • Internet Of Things
      • Learning Services
    • Microsoft Apps
      • VLS
    • Adobe
    • Matlab
    • WordPress
      • Themes WP
      • Plugin WP
    • Google
    • Opensource
    • Others
  • My account
    • Download
    • Get Pack
    • Cart
    • Checkout
  • News
    • Category
    • News Tag
  • Forum
  • About Us
    • Privacy Policy
    • Frequently Questions
    • Contact
Home/Matlab/Understand values differences between smooth and smoothdata functions

Understand values differences between smooth and smoothdata functions

PuTI / 2025-01-29
Understand values differences between smooth and smoothdata functions
Matlab News

Hi,
I’m working on rlowess smoothing and I was wondering why I observe output differences between smooth and smoothdata functions, despite the fact that they are supposed to be similar.
I wrote a small piece of code:
% Sample one-dimensional data
x = 1:100;
data = cos(2*pi*0.05*x+2*pi*rand) + 0.5*randn(1,100);

% Apply rlowess smoothing with smooth
smoothedData2 = smooth(data, 9, ‘rlowess’);
% Apply rlowess smoothing with smoothdata
smoothedData3 = smoothdata(data, ‘rlowess’, 9);

smoothedData2
smoothedData3

isequal(smoothedData2, smoothedData3)

% Plot the original and smoothed data
figure;
plot(x, data, ‘o’);
hold on;
plot(x, smoothedData2, ‘–‘);
plot(x, smoothedData3, ‘:’);
legend(‘Original Data’, ‘Smoothed Data 2’, ‘Smoothed Data 3’);
title(‘Comparison of Smoothing Methods’);

% Calculate the differences
diff2_3 = smoothedData2(:) – smoothedData3(:);

% Display the differences
disp(‘Difference between smoothedData2 and smoothedData3:’);
disp(diff2_3);
As you can see, the graph is similar for both cases, but the values are different.
I also tried to change the method to ‘lowess’, and the differences there are only on the first and last entries, so I’m guessing that the moving window isn’t calculated similarly in both cases (however, I can’t find a difference in the window calculation from the documentation here and here).
To sum up, my two questions are:
Is there a difference in window calculation between smooth and smoothdata for ‘lowess’ method
Apart from this difference, could there be another issue with the calculation of robust weights for example in ‘rlowess’ method.
Thank you!Hi,
I’m working on rlowess smoothing and I was wondering why I observe output differences between smooth and smoothdata functions, despite the fact that they are supposed to be similar.
I wrote a small piece of code:
% Sample one-dimensional data
x = 1:100;
data = cos(2*pi*0.05*x+2*pi*rand) + 0.5*randn(1,100);

% Apply rlowess smoothing with smooth
smoothedData2 = smooth(data, 9, ‘rlowess’);
% Apply rlowess smoothing with smoothdata
smoothedData3 = smoothdata(data, ‘rlowess’, 9);

smoothedData2
smoothedData3

isequal(smoothedData2, smoothedData3)

% Plot the original and smoothed data
figure;
plot(x, data, ‘o’);
hold on;
plot(x, smoothedData2, ‘–‘);
plot(x, smoothedData3, ‘:’);
legend(‘Original Data’, ‘Smoothed Data 2’, ‘Smoothed Data 3’);
title(‘Comparison of Smoothing Methods’);

% Calculate the differences
diff2_3 = smoothedData2(:) – smoothedData3(:);

% Display the differences
disp(‘Difference between smoothedData2 and smoothedData3:’);
disp(diff2_3);
As you can see, the graph is similar for both cases, but the values are different.
I also tried to change the method to ‘lowess’, and the differences there are only on the first and last entries, so I’m guessing that the moving window isn’t calculated similarly in both cases (however, I can’t find a difference in the window calculation from the documentation here and here).
To sum up, my two questions are:
Is there a difference in window calculation between smooth and smoothdata for ‘lowess’ method
Apart from this difference, could there be another issue with the calculation of robust weights for example in ‘rlowess’ method.
Thank you! Hi,
I’m working on rlowess smoothing and I was wondering why I observe output differences between smooth and smoothdata functions, despite the fact that they are supposed to be similar.
I wrote a small piece of code:
% Sample one-dimensional data
x = 1:100;
data = cos(2*pi*0.05*x+2*pi*rand) + 0.5*randn(1,100);

% Apply rlowess smoothing with smooth
smoothedData2 = smooth(data, 9, ‘rlowess’);
% Apply rlowess smoothing with smoothdata
smoothedData3 = smoothdata(data, ‘rlowess’, 9);

smoothedData2
smoothedData3

isequal(smoothedData2, smoothedData3)

% Plot the original and smoothed data
figure;
plot(x, data, ‘o’);
hold on;
plot(x, smoothedData2, ‘–‘);
plot(x, smoothedData3, ‘:’);
legend(‘Original Data’, ‘Smoothed Data 2’, ‘Smoothed Data 3’);
title(‘Comparison of Smoothing Methods’);

% Calculate the differences
diff2_3 = smoothedData2(:) – smoothedData3(:);

% Display the differences
disp(‘Difference between smoothedData2 and smoothedData3:’);
disp(diff2_3);
As you can see, the graph is similar for both cases, but the values are different.
I also tried to change the method to ‘lowess’, and the differences there are only on the first and last entries, so I’m guessing that the moving window isn’t calculated similarly in both cases (however, I can’t find a difference in the window calculation from the documentation here and here).
To sum up, my two questions are:
Is there a difference in window calculation between smooth and smoothdata for ‘lowess’ method
Apart from this difference, could there be another issue with the calculation of robust weights for example in ‘rlowess’ method.
Thank you! smooth, smoothdata MATLAB Answers — New Questions

​

Tags: matlab

Share this!

Related posts

Warning: Error updating FunctionLine in using fplot
2025-05-12

Warning: Error updating FunctionLine in using fplot

Solid creation Simulink, simscape multibody: stuck in loading
2025-05-12

Solid creation Simulink, simscape multibody: stuck in loading

Issues with EMG Signal Acquisition via Simulink Desktop Real-Time (SDRT) and DAQ Board Usage
2025-05-12

Issues with EMG Signal Acquisition via Simulink Desktop Real-Time (SDRT) and DAQ Board Usage

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

Categories

  • Matlab
  • Microsoft
  • News
  • Other
Application Package Repository Telkom University

Tags

matlab microsoft opensources
Application Package Download License

Application Package Download License

Adobe
Google for Education
IBM
Matlab
Microsoft
Wordpress
Visual Paradigm
Opensource

Sign Up For Newsletters

Be the First to Know. Sign up for newsletter today

Application Package Repository Telkom University

Portal Application Package Repository Telkom University, for internal use only, empower civitas academica in study and research.

Information

  • Telkom University
  • About Us
  • Contact
  • Forum Discussion
  • FAQ
  • Helpdesk Ticket

Contact Us

  • Ask: Any question please read FAQ
  • Mail: helpdesk@telkomuniversity.ac.id
  • Call: +62 823-1994-9941
  • WA: +62 823-1994-9943
  • Site: Gedung Panambulai. Jl. Telekomunikasi

Copyright © Telkom University. All Rights Reserved. ch

  • FAQ
  • Privacy Policy
  • Term

This Application Package for internal Telkom University only (students and employee). Chiers... Dismiss