Matrixes must agree error

1 回表示 (過去 30 日間)
Serena Simpson
Serena Simpson 2020 年 10 月 13 日
回答済み: Bandar 2020 年 10 月 13 日
I have the .* to do element by element math, however, it keeps coming back with matricies must agree errors
%% Section 1: Initalization of Variables
f = [0, 5, 10, 20]; %frequencies
t = 0:0.1:pi; %numbers for time
v =-5+exp(-5.*t).*((4.*cos(f.*t))+9.*sin(f.*t)); %equation %% Error here
%% Section 2: Processing
%applying the array f to each voltage
v1 = [v, f(1)];
v2 = [v, f(2)];
v3 = [v, f(3)];
v4 = [v, f(4)];
%% Section 3: Result Output
plot(v1, v2, v3, v4)
title('Voltage in a RLC circuit')
xlabel('Frequncy')
ylabel('Volts')

回答 (1 件)

Bandar
Bandar 2020 年 10 月 13 日
If you would like to carry out element-by-element mutliplication, vectors must have same size. In your case f has 4 elements whereas t has 32 elements.

カテゴリ

Help Center および File ExchangeMathematics についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by