convolution of two vector

32 ビュー (過去 30 日間)
Rica
Rica 2013 年 7 月 15 日
コメント済み: Walter Roberson 2020 年 10 月 4 日
hi !
i want to convolute a vector a=[a1 a2 a3 .....an] with the vectors in this matrix
b=[B1 B2 B3....Bn]. B are vectors.
is there any smart method to make this without loops?
C=[conv(a,B1) conv(a,B2)....conv(a,Bn)]
thank you

採用された回答

Image Analyst
Image Analyst 2013 年 7 月 15 日
out = conv2(b, a);
  1 件のコメント
Eric Kappel
Eric Kappel 2015 年 11 月 16 日
Great! Thx!

サインインしてコメントする。

その他の回答 (1 件)

Rana Mahmoud
Rana Mahmoud 2020 年 10 月 4 日
yes! you can do the following:
y=conv(a, b)
  1 件のコメント
Walter Roberson
Walter Roberson 2020 年 10 月 4 日
No, this will not work.
Notice in the original question that B is a matrix -- each is a vector and the result is a 2D array.
conv() cannot be used with a matrix, only with vectors.
You need to use conv2() instead, as shown by Image Analyst.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeShifting and Sorting Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by