Can someone explain what's wrong with my formula?

1 回表示 (過去 30 日間)
Kevin
Kevin 2021 年 9 月 30 日
コメント済み: Kevin 2021 年 9 月 30 日
close all
clear
clc
syms t
omega = 2:2:6
omega = 1×3
2 4 6
I = 10
I = 10
C = 0.05
C = 0.0500
V = (-I./omega.*C)*cos(omega.*t)
Error using * (line 432)
Dimensions do not match.
fplot(V)
What is wrong with it? I get an error when I try to run it.

採用された回答

Matt J
Matt J 2021 年 9 月 30 日
編集済み: Matt J 2021 年 9 月 30 日
Be careful of missing dots...
V = (-I./omega.*C).*cos(omega.*t)
  1 件のコメント
Kevin
Kevin 2021 年 9 月 30 日
Sorry I'm still relatively new to using matlab, but thank you so much for taking your time to answer :D

サインインしてコメントする。

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2021 年 9 月 30 日
omega is a vector, so (-I./omega.*C) is a vector and cos(omega.*t) is a vector the same size.
So you have 1 x 3 row vector * 1 x 3 row vector. But the * operator is algebraic matrix multiplication, "inner product". In the expresson A*B then size(A,2) must equal size(B,1) -- the "inner" dimensions must match. The first 1 x 3 vector operand for the * operation has 3 columns. The second 1 x 3 vector operand for the * operation has 1 row. But 1 is not equal to 3, so the * operation fails.
The element-by-element multiplication operator is .* instead of *

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by