Filter löschen
Filter löschen

two vectors having different sizes

1 Ansicht (letzte 30 Tage)
Najam us Saqib Fraz
Najam us Saqib Fraz am 22 Okt. 2020
Beantwortet: Walter Roberson am 22 Okt. 2020
I have two vectors which have different sizes.I want to perform the operation in away if 1st vector have lesser elements than number of elements in 2nd vector,it should avoid all other extra entries in 2nd vector and perform operations in away that both vector have same same size.This can also happed vice versa i,e 2nd vector have lesser elements.....

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 22 Okt. 2020
L1 = length(A);
L2 = length(B);
L = min(L1, L2);
A(1:L) .* B(1:L)

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by