1

I have been looking for an efficient way for converting a string numpy array to a two dimensional ASCII matrix in python. So for this is the best that I could come up with

def charArrayToAsciiMatrix(strNumpyArray):
 for i in range(strNumpyArray):
    if(i==0):
        AsciiMatrix=numpy.matrix(ord[[c for c in strNumpyArray[i]]])
    else:
        AsciiMatrix=numpy.vstack(AsciiMatrix,ord[[c for c in strNumpyArray[i]]])

is there a efficient way of doing this?

3
  • Assumption is that all the strings are padded to same length. Commented Apr 18, 2014 at 16:24
  • 2
    please provide sample data Commented Apr 18, 2014 at 16:29
  • Sample data will be input:["aa","aa"] output:[92,92;92,92] Commented Apr 18, 2014 at 19:14

1 Answer 1

-1

How is this?

import numpy as np

def add_word_as_ordinal(arr, word):
    arr.extend([ord(ch) for ch in word])
    return arr

def char_array_to_ascii_matrix(char_array):
    result = np.matrix(reduce(add_word_as_ordinal, char_array, []))
    result.shape = len(char_array), len(char_array[0])
    return result

my_array = np.array("JustA Flesh Wound".split())
my_matrix = char_array_to_ascii_matrix(my_array)
1
  • Thank you @slushy this is better than my solution Commented Apr 18, 2014 at 19:18

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.