3
edits
(Created page with "Front page for tips-n-tricks that I've found useful...") |
No edit summary |
||
Line 1: | Line 1: | ||
Front page for tips-n-tricks that I've found useful... | Front page for tips-n-tricks that I've found useful... | ||
---- | |||
Creating cell arrays requires comma separation. The following code generates a syntax error: | |||
<nowiki>a = {'hi' 'there' 34;'doc' 'bye' {'now' 'harold'}}</nowiki> | |||
but changing it to: | |||
<nowiki>a = {'hi', 'there', 34;'doc', 'bye', {'now', 'harold'}}</nowiki> | |||
works. |
edits