Sunday, November 13, 2016

Progress Report - November 13th, 2016 (Part 2)

Today, I was able to do some research on Matlab's tools, and also master another part of the tutorial they had given. Here are the notes from the tutorial:
- x = A(5,7); - this code if typed will basically retrieve data from an array from a specific area, in this sample, it will retrieve it from data set A, in row 5, column 7. Could be very useful.
- a colon specifies all elements in that dimension, for example, x = A(2,:) creates a row vector that contains all the elements from row 2 of data set A.
- x = v(3:end) refers to the elements from 3 to the end
-You can multiply or divide all of the elements of an array, subtract, add, and much more.
- You can also apply the special commands given by Matlab, like sqrt() on all elements of an array with ease as well
- you can learn more about functions that you don't know by using the "Help" button, and using that, you can browse content - learn about syntaxes and examples

I will be conducting more research and hope to finish more of the tutorial tomorrow.

No comments:

Post a Comment