First of all you need to use for and end not For and End -- MATLAB is case sensitive.
Secondly, your line
Xlabel(‘x (m)’);ylabel(‘y (m)’);zlabel(‘T(^oC)’)
uses Unicode Character 'LEFT SINGLE QUOTATION MARK' (U+2018) and Unicode Character 'RIGHT SINGLE QUOTATION MARK' (U+2019) instead of apostrophe. U+2018 and U+2019 are also known as "smart quotes" because some editors automatically change apostrophes around words to these quotes because those quotes are used in publishing and writing text (but seldom in computer code.)
0 Comments
Sign in to comment.