Signal Fold function in MATLAB

You can make a signal fold function in Matlab and can use it as a calling function in any operations, codes and files in Matlab. To do this simply open and create a new Script (.m file) in Matlab.

  1. Open MATLAB << Then on the top left corner click on the File option << Click New << Then click Script
  2. Now write the following Matlab code given below of signal fold function into the new script (.m file) and save the file in the Matlab directory with any name you want.

 

MATLAB CODE:

function [y n1] = sigfold(x,n)
n1 = -fliplr(n)
y = fliplr(x)
end

 

 

Now, here I’m gonna give you an example of how we can use our sigfold function which we created in any operations or files in Matlab. For this create a new file and write the following input code given below and run.

 

 

INPUT CODE:

n = 1:1.5:10;
x = sin(n);
[y,t] = sigfold(x,n)
subplot(2,1,1)
stem(n,x)
title(‘Original Signal’)
subplot(2,1,2)
stem(t,y)
title(‘Fliped Signal’)

 

 

OUTPUT:

image 2 1024x576 - Signal Fold function in MATLAB

image 3 1024x576 - Signal Fold function in MATLAB


This is how you can make a Signal Fold function in MATLAB. Hope you like this article. If you want to learn more about MATLAB you can read and view all the blog posts related to MALTAB here. MATLAB Learning

If you need any help and assistance, please comment down below so that we can help you. Good Luck!!