#141: Replace strmatch which is a deprecated function in Matlab ---------------------+------------------------------------------------------ Reporter: houtanb | Owner: Type: bug | Status: new Priority: trivial | Milestone: 4.3 Component: General | Version: Keywords: | ---------------------+------------------------------------------------------
Comment(by jpfeifer):
Replying to [ticket:141 houtanb]:
Use strncmp instead, which has a different return type
strmatch should be replaced by find(strcmp()) which replicates the behavior of strmatch and avoids sprecifying the string length, which would be required if one uses strncmp (note the n).