

InterviewSolution
Saved Bookmarks
1. |
What is the difference between syms ‘x’ and sym ‘x’?(a) there is no difference, they are the same functions(b) they are equivalent(c) syms ‘x’makes the declaration long lasting while sym ‘x’ makes the declaration short lasting(d) syms ‘x’ makes the symbol short lasting while sym ‘x’ makes the declaration long lastingThe question was asked in an interview.My question comes from Algebra in chapter MATLAB Basics of MATLAB |
Answer» The correct choice is (c) syms ‘x’MAKES the declaration long lasting while sym ‘x’ makes the declaration short lasting |
|