Anyone that can find what is wrong about the function?

1 回表示 (過去 30 日間)
Jenny Andersen
Jenny Andersen 2019 年 11 月 17 日
コメント済み: Stephen23 2019 年 11 月 19 日
It says " Not enough input values" but I can not see which values I have missed? Can you?
Skärmavbild 2019-11-17 kl. 15.27.54.png
  3 件のコメント
Jenny Andersen
Jenny Andersen 2019 年 11 月 18 日
Hi, and thanks for your reply. I have tried to call the function in the command window with two input arguments and that works fine. But if I want to be able to run the function (by clicking "Run"), how do I need to change my function to be able to achive this?
Stephen23
Stephen23 2019 年 11 月 19 日
"But if I want to be able to run the function (by clicking "Run"), how do I need to change my function to be able to achive this?"
You can either:
  1. write your function to have default values when input arguments are not supplied, or
  2. set up the "Run" button to provide specific input values when you call that function.
Which would you prefer?

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

採用された回答

Adam Danz
Adam Danz 2019 年 11 月 18 日
編集済み: Adam Danz 2019 年 11 月 18 日
"if I want to be able to run the function (by clicking "Run"), how do I need to change my function to be able to achive this?"
Sometimes functions can have default inputs when they are missing from the function-call. Here is an example of how to define default inputs to both of your input variables. The default inputs are defined with the function call is missing the inputs or if the inputs are empty. Sometimes it's good to incude warnings when assigning default inputs so you know when an input was missing. You can remove the warnings in this example, of course.
function [v2, v3] = OrtoVektorFunction(w3, w2)
% Default inputs
if nargin < 1 || isempty(w3)
w3 = 0;
warning('Default input used.')
end
if nargin < 2 || isempty(w2)
w2 = 1;
warning('Default input used.')
end
% Continue with code....

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by