フィルターのクリア

Help with simple nested function

1 回表示 (過去 30 日間)
Davide Cannavacciuolo
Davide Cannavacciuolo 2023 年 11 月 3 日
編集済み: Sam Chak 2023 年 11 月 3 日
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 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 11 月 3 日
"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?
Davide Cannavacciuolo
Davide Cannavacciuolo 2023 年 11 月 3 日
編集済み: Davide Cannavacciuolo 2023 年 11 月 3 日
I need a simple matlab function that can do something like this:

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

回答 (3 件)

Jon
Jon 2023 年 11 月 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 件のコメント
Jon
Jon 2023 年 11 月 3 日
編集済み: Jon 2023 年 11 月 3 日
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)
Jon
Jon 2023 年 11 月 3 日
Note, this will also work with x assigned to other functions of time, I am just using sin(t) as it matches your example.

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


Steven Lord
Steven Lord 2023 年 11 月 3 日
移動済み: Dyuman Joshi 2023 年 11 月 3 日
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 件のコメント
Dyuman Joshi
Dyuman Joshi 2023 年 11 月 3 日
@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

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


Sam Chak
Sam Chak 2023 年 11 月 3 日
編集済み: Sam Chak 2023 年 11 月 3 日
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

カテゴリ

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

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by