when i write functions in matlab it not recognizing?

function [hNest,hLocal] = functionsExample(v)
hNest = @nestFunction;
hLocal = @localFunction;
function y = nestFunction(x)
y = x + v;
end
end
function y = localFunction(z)
y = z + 1;
end

2 件のコメント

Jan
Jan 2021 年 10 月 24 日
This is some code. What is the problem? Do you get an error message? If so, which one? When does the message appear, or in other words: how do you call this function?
Aravind Mallemputi
Aravind Mallemputi 2021 年 10 月 24 日
Run option is not activated

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

 採用された回答

Image Analyst
Image Analyst 2021 年 10 月 24 日

1 投票

It ran for me with no errors.
Note that you never actually call either nestFunction() or localFunction(). You just assign function handles and exit. So, they never actually use your x, y, v, or z variables. Just leave off the semicolon when you call
[hNest,hLocal] = functionsExample(5)
or set a break point in those functions to verify that fact.

4 件のコメント

Aravind Mallemputi
Aravind Mallemputi 2021 年 10 月 24 日
Run option is not showing and the code is working for another pc it's not working on my laptop.
Image Analyst
Image Analyst 2021 年 10 月 24 日
Exactly what does "not working" mean to you? Does it throw an error? Download and run my test6.m file. Does it run?
Image Analyst
Image Analyst 2021 年 10 月 24 日
@Aravind Mallemputi reply moved here:
you helped me a lot Tqu you sir,its working.
Image Analyst
Image Analyst 2021 年 10 月 24 日
@Aravind Mallemputi, good. My guess is that you just posted some simplified, dummy code that was not what you actually were running. And then you realized that you needed to call the internal, nexted functions -- they do not automatically call themselves. If I helped you, you can "Accept" or Vote for this answer.

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by