How do you write a matlab function that identifies if a string is a palindrome or not?

26 visualizaciones (últimos 30 días)
So far I've got ...
string = input('What is your number: '); disp(fliplr(string))
if string == fliplr(string) disp('Your number is a PALINDROME') else disp('Your number is NOT A PALINDROME') end
And now I'm stuck

Respuesta aceptada

Image Analyst
Image Analyst el 30 de Mzo. de 2014
Almost. Try this:
string = input('What is your string: ', 's');
fprintf('Your string = %s\nFlipped, it = %s\n', string, fliplr(string));
if string == fliplr(string)
disp('Your number is a PALINDROME')
else
disp('Your number is NOT A PALINDROME')
end
  4 comentarios
Star Strider
Star Strider el 30 de Mzo. de 2014
That’s my all time fave!
Probably need to remove all blanks as well before flipping and doing the comparison.

Iniciar sesión para comentar.

Más respuestas (3)

sesha sai
sesha sai el 26 de Sept. de 2020
function [ palindromic ] = palindrome( string )
if length(string) < 1
palindromic = logical(1);
return;
end
if string(1) ~= string(length(string))
palindromic = logical(0);
return;
end
palindromic = palindrome(string(2:length(string)-1));
end

Benjamin Askelund
Benjamin Askelund el 19 de Oct. de 2016
Editada: Benjamin Askelund el 19 de Oct. de 2016
Hi, I made a code that flipps as well NOT USING fliplr based on "Image Analyst" code. Lots of people ask for this as far as I know
clc
%Ask user for string
A = input('What is your string: ', 's');
%flipp string
B = flip(A);
fprintf('Your word = %s\nflipped word is = %s\n', A, B);
%compare stringA and FlippedString (bool)
if strcmp(A, B) == 1
disp('Your number is a PALINDROME')
else
disp('Your number is NOT A PALINDROME')
end
This code also works for numbers. Just type numbers insted of strings
Sorce: https://se.mathworks.com/help/matlab/ref/flip.html
Signed BDA
  2 comentarios
Steven Lord
Steven Lord el 19 de Oct. de 2016
Lots of people ask for this because it's a fairly easy homework assignment and so it is one that's often assigned in courses where students are being introduced to MATLAB.

Iniciar sesión para comentar.


Bhuvana Krishnaraj
Bhuvana Krishnaraj el 9 de En. de 2020
Editada: Walter Roberson el 10 de En. de 2024
x=input('Enter number: ');
temp=x;
y = 0;
while x > 0
t = mod(x,10);
y = 10*y+t;
x = (x-t)/10; %% without this it will give floating value
end
if(y==temp)
disp('The number is palindrome');
else
disp('The number is not palindrome');
end
  1 comentario
Walter Roberson
Walter Roberson el 26 de Sept. de 2020
Suppose the user enters 050. That would certainly appear to be a palindrome. You use input() with no 's' to read it so you get a binary double precision value equal to decimal 50. You proceed to process it numerically and get 10*0 + 5 = 5. But 5 is not 50 so you say No it is not a palindrome. When it should probably be one.

Iniciar sesión para comentar.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by