Matlab function assumed inputs

1 回表示 (過去 30 日間)
Benjamin Wilson
Benjamin Wilson 2023 年 11 月 17 日
編集済み: Stephen23 2023 年 11 月 17 日
Does Matlab support functions with inputs that if not given, can be assumed?
I would like to write some code similar to the following - where if alpha and beta are not given when calling the function they are assigned to a set value 10 and -0.1 respectively
function [x,y] = pricingprogramme(P,T,alpha = 10, beta = -0.1)
... some code using P,T aswell as alpha and beta ....
end
Any help would be greatly appreciated.

採用された回答

Dyuman Joshi
Dyuman Joshi 2023 年 11 月 17 日
Yes, use varargin with nargin -
[x1,y1] = pricingprogramme(5,10)
x1 = 16
y1 = 40.1000
[x2,y2] = pricingprogramme(1,2,3,4)
x2 = -9
y2 = -5
function [x,y] = pricingprogramme(P,T, varargin)
if nargin == 4
alpha = varargin{1};
beta = varargin{2};
elseif nargin==2
alpha = 10;
beta = -0.1;
else
%Modify other cases as per need
error('Number of inputs must be 2 or 4')
end
%Random definitions
x = P + T - alpha*beta;
y = P*T - (alpha + beta);
end
  1 件のコメント
Benjamin Wilson
Benjamin Wilson 2023 年 11 月 17 日
Thank you! Very helpul!

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

その他の回答 (3 件)

Stephen23
Stephen23 2023 年 11 月 17 日
編集済み: Stephen23 2023 年 11 月 17 日
The simplest approach is to use the ARGUMENTS block:
pricingprogramme([],[])
ans = 10.1000
pricingprogramme([],[],3,0.5)
ans = 3.5000
function out = pricingprogramme(P,T,alpha,beta)
arguments
P
T
alpha = 10
beta = 0.1
end
out = alpha + beta;
end

Florian Bidaud
Florian Bidaud 2023 年 11 月 17 日
編集済み: Florian Bidaud 2023 年 11 月 17 日
Hi,
if you want positional arguments, use addOptional with an inputParser like this :
% to use the function as
% [x,y] = pricingprogramme(P, T, alpha_value, beta_value)
% or pricingprogramme(P, T, alpha_value)
% or pricingprogramme(P, T)
function [x,y] = pricingprogramme(P,T,varargin)
p = inputParser;
addOptional(p,'alpha',10, @isnumeric)
addOptional(p,'beta',0.1, @isnumeric)
parse(p,varargin{:})
alpha = p.Results.alpha;
beta = p.Results.beta;
... some code using P,T aswell as alpha and beta ....
end
If you want to add them as parameters, use addParameter like this :
% to use the function as
% [x,y] = pricingprogramme(P, T, alpha=alpha_value, beta=beta_value)
% or pricingprogramme(P, T, alpha=alpha_value)
% or pricingprogramme(P, T, beta=beta_value)
% or pricingprogramme(P, T, beta=beta_value, alpha=alpha_value)
% or pricingprogramme(P, T)
function [x,y] = pricingprogramme(P,T,varargin)
p = inputParser;
addParameter(p,'alpha',10, @isnumeric)
addParameter(p,'beta',0.1, @isnumeric)
parse(p,varargin{:})
alpha = p.Results.alpha;
beta = p.Results.beta;
... some code using P,T aswell as alpha and beta ....
end
NOTE: @isnumeric is to check that the input value is a numeric value
  1 件のコメント
Benjamin Wilson
Benjamin Wilson 2023 年 11 月 17 日
Thank you!

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


madhan ravi
madhan ravi 2023 年 11 月 17 日
Use nargin() to determine if number of inputs are less than three assign the default values to alpha and beta else feed in the actual values of them
  1 件のコメント
Benjamin Wilson
Benjamin Wilson 2023 年 11 月 17 日
Thank you!

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

カテゴリ

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

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by