whats wrong with my code?

1 回表示 (過去 30 日間)
Jasleen Kahlon
Jasleen Kahlon 2020 年 3 月 20 日
コメント済み: darova 2020 年 3 月 21 日
i was trying to make a funtion for school and my teacher gave me a code that he used to make the funtion.
the code he used was:
function dx = colour_selection_2020f (t,x)
dx = [0];
% 'a' is the selection strength for colouration based on female preference
% 'b' is the selection strength based on predation pressure
% 'c' is the narrow sense haritability of colouration
a = .68;
b= -.71;
c=.0054;
dx(1) = (a*c)+(b*c);
and the code i used was:
can someone please tell me whats wrong with it???
  3 件のコメント
Jasleen Kahlon
Jasleen Kahlon 2020 年 3 月 20 日
if i try to use the function it says it cannot be found
darova
darova 2020 年 3 月 21 日
Filename and function name should be the same

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

採用された回答

the cyclist
the cyclist 2020 年 3 月 20 日
He wrote
dx = [0];
and you wrote
dx[0];
  2 件のコメント
John D'Errico
John D'Errico 2020 年 3 月 20 日
Well, since the only difference was the presence of an = operator, the two versions should be "equal", right? I just break me up.
Jasleen Kahlon
Jasleen Kahlon 2020 年 3 月 20 日
i actually had to do it in parentheses, my professors code was incorrect. But thank you!

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

その他の回答 (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