How can I impose restrictions on a function @

6 次查看(过去 30 天)
Dear all
I have a compicated function
logPDF=@(x) set_up(x, a,y);
under the restriction x+a<0.999.
How can I impose this restriction on the above function? Do I need to set up another function? Can I impose the restrctions inside the set_up function?
  5 个评论
James Tursa
James Tursa 2020-6-5
Just a simple if-test up front to throw an error if the desired condition is not met.
Mohammad Sami
Mohammad Sami 2020-6-5
You can use assert function to check the condition is met, otherwise it will throw an error.
assert((x+a)<0.999,'Error message you want to display / throw');

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by