sine wave, voltage vs time
Show older comments
Generate a plot of a sine wave having a 1 V amplitude and period of 0.01 seconds. voltage vs time. similar to picture.
currentky have: it does not plot as a voltage vs time.
x = linspace(0.01, 2*pi, 1500);
period = pi/4;
y = 1* sin(2 * pi * x / period);
plot(x, y, 'b-', 'LineWidth', 2);
xlabel('x', 'FontSize', 20);
ylabel('y', 'FontSize', 20);
title('y vs. x', 'FontSize', 20);
grid on;
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0, 0.04, 1, 0.96]);
Answers (2)
Walter Roberson
on 13 Feb 2020
xlabel('time (s)', 'FontSize', 20)
ylabel('voltage (V)', 'FontSize', 20)
title('Voltage vs time', 'FontSize', 20)
Now it plots voltage versus time.
5 Comments
Lalo Vera
on 14 Feb 2020
Walter Roberson
on 14 Feb 2020
%what you had
x = linspace(0.01, 2*pi, 1500);
period = pi/4;
y = 1* sin(2 * pi * x / period);
plot(x, y, 'b-', 'LineWidth', 2);
%what I add
xlabel('time (s)', 'FontSize', 20)
ylabel('voltage (V)', 'FontSize', 20)
title('Voltage vs time', 'FontSize', 20)
The result is voltage vs time.
What it is not is wavy the same way your example plot is. That is because you only construct a plain sine wave. You need to change the wave you generate in order to get something similar to the sample plot.
Hint: sine wave is always centered around 0. Therefore, in order to have something that is sine-like that is centered around a different value locally, you have to have added something to the sine wave. For example, you might have added a sine wave of a different frequency.
i need a command that outputs an expression of the sine wave in form of a frequency sine path.
Sorry, I do not understand that. "expression of the sine wave" seems like you are talking about a formula, but "in the form of a frequency sine path" seems like you are talking about a graph.
Lalo Vera
on 14 Feb 2020
Walter Roberson
on 14 Feb 2020
What does my hint suggest to you?
How many full large periods does the signal have? Given the time period, what is the formula for a signal that behaves just that way?
How many small periods does the signal have? Given the time period, what is the formula for a signal that behaves just that way, as if it were not overlayed on a different signal?
Now how can you combine the two formulas ?
Lalo Vera
on 14 Feb 2020
Lalo Vera
on 14 Feb 2020
0 votes
Categories
Find more on MATLAB in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!