Info

This question is closed. Reopen it to edit or answer.

I have finished my basic program questions could anybody please check my answers?

1 view (last 30 days)
Mat Lab Answer.jpg
  9 Comments
dpb
dpb on 11 Aug 2019
I think you misinterepreted the c) part as Steven said, too. Presuming you started the assignment with a clean workspace, see what
whos
shows you after the above...not what you're expecting methinks... :)

Answers (1)

boris vuleta
boris vuleta on 11 Aug 2019
I agree with Steven too, and just want to ask how you can't test these exercises in command window. Also If I may to add there are loots of help documents with matlab that can clarify your concerns. For an example if you need to known how linspace function works, just type in comm window doc linspace and new window appears. Good luck with your assignments and learning matlab ?
  3 Comments
dpb
dpb on 11 Aug 2019
Another couple of useful documentation tools--
help
by itself gives a top level list of categories and then a hyperlink to the category that gives a oneline list of what is in that category. This is very useful to see what's in any given area quickly without all the details. You can see what might be interesting for a given task quickly and then delve more fully into each via doc
The second is
lookfor searchword
that will look for (clever name, huh?) the word in the function one-line description. This can help find those functions related to some operation that you wish to do but don't know what the name of the function is, specifically.
These old text command line tools don't get the respect they deserve any more with the emphasis on HTML. That has its place when you once know what you're looking for and need the details, but for top level searching it's more clumsy than needs be...altho don't forget the search facility therein, either...

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!