▸ Octave / Matlab Tutorial :
Recommended Machine Learning Courses:
- Coursera: Machine Learning
- Coursera: Deep Learning Specialization
- Coursera: Machine Learning with Python
- Coursera: Advanced Machine Learning Specialization
- Udemy: Machine Learning
- LinkedIn: Machine Learning
- Eduonix: Machine Learning
- edX: Machine Learning
- Fast.ai: Introduction to Machine Learning for Coders
- Suppose I first execute the following Octave/Matlab commands:
Which of the following are then valid commands? Check all that apply. (Hint: A’ denotes the transpose of A.)
- Let
Which of the following indexing expressions gives
Check all that apply.- B = A(:, 1:2);
- B = A(1:4, 1:2);
- B = A(:, 0:2);
- B = A(0:4, 0:2);
- Let A be a 10x10 matrix and x be a 10-element vector. Your friend wants to compute the product Ax and writes the following code:
How would you vectorize this code to run without any for loops? Check all that apply.- v = A * x;
- v = Ax;
- v = x’ * A;
- v = sum (A * x);
- Say you have two column vectors v and w, each with 7 elements (i.e., they have dimensions 7x1). Consider the following code:
Which of the following vectorizations correctly compute z? Check all that apply.- z = sum (v .* w);
- z = w’ * v;
- z = v * w’;
- z = w * v’;
Check-out our free tutorials on IOT (Internet of Things):
- In Octave/Matlab, many functions work on single numbers, vectors, and matrices. For example, the sin function when applied to a matrix will return a new matrix with the sin of each element. But you have to be careful, as certain functions have different behavior. Suppose you have an 7x7 matrix X. You want to compute the log of every element, the square of every element, add 1 to every element, and divide every element by 4. You will store the results in four matrices, A, B, C, D. One way to do so is the following code:
Which of the following correctly compute A, B, C or D? Check all that apply.- C = X + 1;
- D = X / 4;
- A = log (X);
- B = X ^ 2;
Click here to see solutions for all Machine Learning Coursera Assignments.
&
Click here to see more codes for Raspberry Pi 3 and similar Family.
&
Click here to see more codes for NodeMCU ESP8266 and similar Family.
&
Click here to see more codes for Arduino Mega (ATMega 2560) and similar Family.
Feel free to ask doubts in the comment section. I will try my best to answer it.
If you find this helpful by any mean like, comment and share the post.
This is the simplest way to encourage me to keep doing such work.
&
Click here to see more codes for Raspberry Pi 3 and similar Family.
&
Click here to see more codes for NodeMCU ESP8266 and similar Family.
&
Click here to see more codes for Arduino Mega (ATMega 2560) and similar Family.
Feel free to ask doubts in the comment section. I will try my best to answer it.
If you find this helpful by any mean like, comment and share the post.
This is the simplest way to encourage me to keep doing such work.
Thanks & Regards,
- APDaga DumpBox
- APDaga DumpBox