Error using _*_. What am I doing wrong?

t = linspace(t1,10,200);
x(t) = ((F0*exp((-zeta*omega*t.)))/(k*sqrt(1-zeta^2)))*((exp(zeta*omega*t1)*cos(omega*(t.-t1))-phi)-cos(omega*t.-phi));
First I got this error
Error using *
Incorrect dimensions for matrix multiplication. Check that the number of columns in the first matrix
matches the number of rows in the second matrix. To perform elementwise multiplication, use '.*'.
Then I added '.*' after every 't' and now I get the following error. Where am I getting this wrong?
Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check
for mismatched delimiters.

2 件のコメント

Stephen23
Stephen23 2021 年 2 月 19 日
If you are not doing linear algebra then you should not be using matrix operations:
Use array operations.
Atli Tobiasson
Atli Tobiasson 2021 年 2 月 19 日
thanks!

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

回答 (1 件)

Alan Stevens
Alan Stevens 2021 年 2 月 19 日

1 投票

You need dots before the * and before the / , not after the t.

2 件のコメント

Atli Tobiasson
Atli Tobiasson 2021 年 2 月 19 日
Thank you. I fixed it and also changed x(t) -> x, which gave me an error too
Alan Stevens
Alan Stevens 2021 年 2 月 19 日
You will need to post your full code for anyone to be able to resolve your further error.

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

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

質問済み:

2021 年 2 月 19 日

コメント済み:

2021 年 2 月 19 日

Community Treasure Hunt

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

Start Hunting!

Translated by