日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Machine Learning week 2 quiz: Octave Tutorial

發布時間:2025/3/21 编程问答 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Machine Learning week 2 quiz: Octave Tutorial 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Octave Tutorial

5?試題

1.?

Suppose I first execute the following Octave commands:

A = [1 2; 3 4; 5 6]; B = [1 2 3; 4 5 6];

Which of the following are then valid Octave commands? Check all that apply and assume all options are written in an Octave command. (Hint: A' denotes the transpose of A.)

C = A * B;

C = B' + A;

C = A' * B;

C = B + A;

2.?

Question text

Let?A=????16594211714310615138121????.

Which of the following indexing expressions gives?B=????16594211714????? Check all that apply.

B = A(:, 1:2);

B = A(1:4, 1:2);

B = A(0:2, 0:4)

B = A(1:2, 1:4);

3.?

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:

v = zeros(10, 1); for i = 1:10for j = 1:10v(i) = v(i) + A(i, j) * x(j);end end

How would you vectorize this code to run without any FOR loops? Check all that apply.

v = A * x;

v = Ax;

v = A .* x;

v = sum (A * x);

4.?

Say you have two column vectors?v?and?w, each with 7 elements (i.e., they have dimensions 7x1). Consider the following code:

z = 0; for i = 1:7z = z + v(i) * w(i) end

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';

5.?

In Octave, 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:

for i = 1:7for j = 1:7A(i, j) = log(X(i, j));B(i, j) = X(i, j) ^ 2;C(i, j) = X(i, j) + 1;D(i, j) = X(i, j) / 4;end end

Which of the following correctly compute?A,B,C,?or?D? Check all that apply.

C = X + 1;

D = X / 4;

B = X .^ 2;

B = X ^ 2;

總結

以上是生活随笔為你收集整理的Machine Learning week 2 quiz: Octave Tutorial的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。