How to use flip() In MATLAB

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

Syntax: flip(A)

            flip(A, dim)

Here,

 flip(A) function is used to return an array of the same size as A, but with the reversed order of the elements.

flip(A, dim) function is used to reverses the order of the elements of A along dimension dim. For example, if A is a matrix, then flip(A,1) reverses the elements in each column, and flip(A,2) reverses the elements in each row.

Example 1:

Matlab




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


Output:

Example 2:

Matlab




% MATLAB code for reverse
% string using flip()
% Initializing a string
string = ['a' 'b' 'c'
          'd' 'e' 'f'
          'g' 'h' 'i'];
  
% Calling the flip() function
% over the above string along with
% first dimensions to
% reverse its elements
Reversed_String = flip(string, 1)


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