Error when multiplying two vectors

1 visualizzazione (ultimi 30 giorni)
Lev Mihailov
Lev Mihailov il 10 Lug 2019
Risposto: Andrei Bobrov il 10 Lug 2019
Hello! I have two vectors of data that I need to multiply with each other and then podoleit
B = zeros(1,2);
IWant = [a B];
Want=IWant*lett+20/lett+1;
% 'a' dimensions 1x1101
% IWant 1x1103
% lett 1x1103
Error using *
Inner matrix dimensions must agree.

Risposta accettata

Andrei Bobrov
Andrei Bobrov il 10 Lug 2019
Use .* and ./:
Want=IWant.*lett+20./lett+1;

Più risposte (0)

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by