user673218
user673218

Reputation: 411

Escape sequence to display apostrophe in MATLAB

I want to output apostrophe (') in matlab. Some thing like:

SendOrder('side, symbol, price', 'b, msft, 10', 'b, ibm, 200')

I am not able to do it with the help of disp(). What are escape sequences in matlab?

Upvotes: 10

Views: 11915

Answers (1)

ascanio
ascanio

Reputation: 1526

try the double apostrophe :

''

Upvotes: 19

Related Questions