フィルターのクリア

Did not get the row vector as expected.

3 ビュー (過去 30 日間)
Zuhri Ashraaf
Zuhri Ashraaf 2020 年 12 月 6 日
コメント済み: Zuhri Ashraaf 2020 年 12 月 6 日
Hi everyone!
I have this code.
x = 0:0.1:100;
y = cos(x)/(2-cos(x));
I was expecting my y to be a row vector too like x. However, when I declare it, the output is only y = -0.1122.
The question is why is that and what should I do to make y as a vector like x.
I haven't finish my Onramp tutorial, but I'm just curious and at the same time confused.
Sorry if my question is too basic to be asked and sorry again for my bad English.
Thank you in advanced!

採用された回答

Image Analyst
Image Analyst 2020 年 12 月 6 日
編集済み: Image Analyst 2020 年 12 月 6 日
You're doing a "matrix division". Try dot slash to do an element-by-element division:
x = 0:0.1:100;
y = cos(x) ./ (2-cos(x));
  1 件のコメント
Zuhri Ashraaf
Zuhri Ashraaf 2020 年 12 月 6 日
That makes a lot of sense and it works!
Thank you so much!

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by