|
From: Russel H. <ru...@ap...> - 2006-02-13 22:42:57
|
OK, Thanks. Russel > Equality testing on string arrays does not work (equality testing > uses ufuncs internally which are not supported generally for > flexible arrays). You must use chararray's. > > Thus, > > sta.view(chararray) == stb.view(chararray) > > Or create chararray's from the beginning: > > sta = char.array(['abc','def','ghi']) > stb = char.array(['abc','jkl','ghi']) > > Char arrays are a special subclass of the ndarray that give arrays > all the methods of strings (and unicode) elements and allow (rich) > comparison operations. > > -Travis > > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through > log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD > SPLUNK! > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ > Numpy-discussion mailing list > Num...@li... > https://lists.sourceforge.net/lists/listinfo/numpy-discussion |