|
From: | Ben Abbott |
Subject: | Re: strcat not converting cell into string...in Octave 4.2.2 |
Date: | Sun, 29 Apr 2018 11:16:43 -0700 |
I expect a change was made for compatibility with Matlab. ----------------- strcat({'espeak '},'"' ,'Done with cross fade','”') ans = 'espeak "Done with cross fade"' whos ans Name Size Bytes Class Attributes ans 1x1 170 cell ----------------- A simple fix is to covert to a cs-list (this works for Octave, but not Matlab). system (strcat({'espeak '},'"' ,'Done with cross fade','”’){:}) Ben |
[Prev in Thread] | Current Thread | [Next in Thread] |