Help with simple nested function

The function i am trying to get is:
%first mode
function g=hall(t)
lolla=seno(t);
function h=seno(t);
h=sin(t);
end
if lolla>0
g=1;
else g=0;
end
end
that means if the sine is positive the function outputs 1, otherwise negative. I get serveral types of errors. Edit as you prefer and make it even simple if you can. Later on I will have to edit the sine function with other functions of time. Thank you very much in advance.

6 Comments

Your code seems to be working, see below.
I suspect the problem might be in how you call your function.
hall(pi/2)
ans = 1
hall(0)
ans = 0
hall(-pi/3)
ans = 0
function g=hall(t)
lolla=seno(t);
function h=seno(t)
h=sin(t);
end
if lolla>0
g=1;
else g=0;
end
end
yes you are right, but when I do fplot(hall,[0 3]) for exaple i get error, know why?
"I get serveral types of errors."
Please post the complete error message(s) here.
If I do fplot(hall,[0 3]) I get not enoght input arguments, how could I fix this?
"yes you are right, but when I do fplot(hall,[0 3]) for exaple i get error, know why?"
First of all, the syntax of calling the function is incorrect. See my comment above for the correct syntax.
Secondly, fplot expects function handles as input, whereas the function you have provides numbers as outputs.
What is the objective here? Do you want to plot the outcome of the function for different values?
If so, then which type of plot? and what to plot against?
I need a simple matlab function that can do something like this:

Sign in to comment.

Answers (3)

Your code seems to run without errors as demonstrated below, whether it does what you want is another question. What is it exactly you are trying to do?
t = linspace(0,2*pi);
g = hall(t)
g = 0
%first mode
function g=hall(t)
lolla=seno(t);
function h=seno(t);
h=sin(t);
end
if lolla>0
g=1;
else g=0;
end
end

3 Comments

If I do fplot(hall,[0 3]) I get not enoght input arguments, how could I fix this?
To make a plot that is similar to the Simulink block diagram that you show you could use this
t = linspace(0,10*pi,1000);
x = sin(t);
% x>0 is logical array true (1) when x is positive false (0), make it into
% numerical values of ones and zeros so that you can plot it, or otherwise
% maninpulate it
xpm = double(x>0);
plot(t,xpm)
Note, this will also work with x assigned to other functions of time, I am just using sin(t) as it matches your example.

Sign in to comment.

Steven Lord
Steven Lord on 3 Nov 2023
Moved: Dyuman Joshi on 3 Nov 2023
The command fplot(hall, [0 3]) attempts to call hall with no input arguments and use what it returns as the first input to the fplot function. Your hall function requires an input to operate correctly.
If you were to specify a function handle to the hall function (to allow fplot to call it with the inputs it decides to use) you'd still have an issue when your user (or fplot) calls your function with a non-scalar input. That would look like fplot(@hall, [0 3]). Instead of using if in your hall code, you'd probably want to use logical indexing.

1 Comment

@Davide Cannavacciuolo, follows Steven's advice to
- understand syntax of fplot() function for plotting
- and use logical indexing to modify your code so that it works for non-scalar inputs

Sign in to comment.

If I'm not mistaken, you probably want to plot something like this, right? Once you confirm that, we can guide you how to plot the graph using your Nested function. By the way, is it a requirement to use fplot()?
t = linspace(0, 2*pi, 3601);
g = zeros(1, numel(t));
for j = 1:numel(t)
g(j) = hall(t(j));
end
plot(t/pi, sin(t)), hold on
plot(t/pi, g), grid on, ylim([-1.5 1.5])
xlabel('t/{\pi}')
legend('sin(t)', 'g')
%% first mode
function g = hall(t)
lolla = seno(t);
function h = seno(t);
h = sin(t);
end
if lolla > 0
g = 1;
else
g = 0;
end
end

Categories

Products

Release

R2023b

Edited:

on 3 Nov 2023

Community Treasure Hunt

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

Start Hunting!