How can I plot the function of Resistor Voltage Vr
Show older comments
In this situation, I am assuming frequency f is a unknown varible ( just like variable x). I want to plot a graph of function Vr ( resistor voltage) in the range frequency of [0, 4e6] where Vr = (Vo*R)/Z
clear all
clc
% Define the value of R,C,L
R = 1000;
C = 120e-12;
L = 470e-6;
f = 4e6;
V0 = 220;
syms f
% Define the function of Resistor Voltage Vr
Vr = (V0*R)/sqrt((R^2)+(2*pi*f*L - 1/2*pi*f*C)^2);
fplot(@(f) Vr,[0 4e6])
Accepted Answer
More Answers (1)
Richard Duran
on 20 Oct 2020
0 votes
Write a function called voltage that computes the voltages at different junctions.help please


1 Comment
Micheal Omojola
on 13 Nov 2020
Here is the solution to your question:
function [a,b] = lin_reg(x,y)
len = length(x);
aug = [x' ones(len,1)];
res = aug\y';
a = res(1);
b = res(2);
end
Categories
Find more on 2-D and 3-D Plots 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!