How to use fliplr() In MATLAB

The fliplr() function is used to flip the specified string from left to right.

Syntax: fliplr(String)

Parameters: This function accepts a parameter.

String: It is the specified string whose characters are going to be flipped from left to right.

Example:

Matlab




% MATLAB code for reverse 
% string using fliplr()
% Initializing a string
string = 'w3wiki';
  
% Calling the fliplr() function
% over the above string to
% flip its characters from left 
% to right
Reversed_String = fliplr(string)


Output:

How to reverse a string in MATLAB?

In this article, we are going to discuss the “Reversing of a string” in MATLAB which can be done in multiple approaches that are illustrated below:

Similar Reads

Method 1: Using Built-in Functions

By using MATLAB built-in functions like reverse(), flip() and fliplr(). Built-in functions can be defined as – ” The functions which are already defined in programming framework and perform a specific task”....

Using reverse()

The reverse() function is used to reverse the order of characters in the specified strings....

Using flip()

...

Using fliplr()

The flip() function is used to flip the order of the specified string....

Method 2:  Using the end keyword

...

Method 3: Using for loop

...

Contact Us