필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how to multiply matrix 2 * 2 if the elements of the matrix are row vectors.

조회 수: 2 (최근 30일)
Ed
Ed 2013년 7월 15일
마감: MATLAB Answer Bot 2021년 8월 20일
fre=100:100:1000;
A=[1 9; 9 5]; % matrix 2*2
B=[1 0; cos(2.*pi.*fre) 0]; %matrix 2*2
C=A.*B; % ?? how ?? or
%C=A*B; % ???
% i need know who the elements of C
disp(C);

답변 (3개)

Honglei Chen
Honglei Chen 2013년 7월 15일
B=[1 0; cos(2.*pi.*fre) 0];
will error out since it is not a 2x2 matrix. You will have to use a cell because fre is a vector. You may need to do it with cell arrays if this is what you want
a = rand(2)
b = {1 2;[3 5] 4}
c = cellfun(...
@times,b,arrayfun(@(x)x,a,'UniformOutput',false),'UniformOutput',false)

Andrei Bobrov
Andrei Bobrov 2013년 7월 16일
fre=100:100:1000;
b = [1 0;0 0];
B = repmat(b,1,1,numel(fre));
B(2,1,:) = cos(2.*pi.*fre);
A=[1 9; 9 5];
C1 = bsxfun(@times,A,B); % times
C2 = reshape(A*reshape(B,2,[]),size(A,1),size(A,2),[]); % mtimes

Ed
Ed 2013년 7월 16일
thanks .. I will review the information

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by