Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

help with creating certain function for setting elements in one matrix to another

1 visualización (últimos 30 días)
want to make function that takes in text, and then creates a matrix that sets each element to one of the ascii code elements
for example: [abcdef] would get set to [1 2 3 4 5 6]
and [help] would get set to [8 5 12 16]
pls help

Respuestas (1)

the cyclist
the cyclist el 4 de Nov. de 2017
Here's one way:
alphabet = 'abcdefghijklmnopqrstuvwxyz';
[~,vec] = ismember('help',alphabet)
  9 comentarios
Stephen23
Stephen23 el 4 de Nov. de 2017
Editada: Stephen23 el 4 de Nov. de 2017
"I stored them all as one vector called 'text1'"
Stored where? In some file, in a matrix in MATLAB, or printed on a piece of paper? How did you define this matrix?

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by