Good evening,
The following line of code was working, until I added in the inverse tan that I missed writting in.
Adding the 'atand' is producing an error in this line. I've tried both 'atand' and 'atand.* ' and both ways produce an error.
How can I fix this issue?
Thank you for your assistance!
phata_values = atand.*[phataY./phataX];

1 件のコメント

David Goodmanson
David Goodmanson 2021 年 1 月 11 日
編集済み: David Goodmanson 2021 年 1 月 11 日
Hi Jocelyn,
try atand(phataY./phataX). Even better, if you want a four-quadrant version of atan, use atan2d(phataY,phataX)

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

 採用された回答

John D'Errico
John D'Errico 2021 年 1 月 11 日

0 投票

I think you do not unerstand MATLAB. I'd start with taking the Onramp tutorial. atand of what?
atand is a FUNCTION. You need to pass it arguments. For example, Perhps you intended to write this:
phata_values = atand(phataY./phataX);
Or perhaps you wanted to write
phata_values = atand(z).*(phataY./phataX);
where z is some unknown variable that you never told us about.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeIntroduction to Installation and Licensing についてさらに検索

タグ

質問済み:

2021 年 1 月 11 日

編集済み:

2021 年 1 月 11 日

Community Treasure Hunt

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

Start Hunting!

Translated by