Effacer les filtres
Effacer les filtres

How can I multiply two different sized objects?

1 vue (au cours des 30 derniers jours)
Florea George
Florea George le 8 Jan 2019
%Matrix dimensions must agree.
A = 1;
pas = 1/1000;
t=-10:pas:10;
k=10;
omega = -k*pi/A:1/10:k*pi/A;
x=omega.*t;
%The error appears on the last line where x is. how can i multiply them?

Réponse acceptée

madhan ravi
madhan ravi le 8 Jan 2019
omega = linspace(-k*pi/A,k*pi/A,numel(t)); % change your line to this

Plus de réponses (1)

Totanly
Totanly le 8 Jan 2019
you can't multiply two different sized vectors. Follow the matrix multiplication rules.
if A=first matrix and B=second matrix
size(A) should be Size(B) for element by element multiplication;
no of columns of A= no of rows of B for matrix multiplication
  1 commentaire
Florea George
Florea George le 8 Jan 2019
and how i can adapt this theory to my problem?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by