Requesting help for piecewise ploting
Mostrar comentarios más antiguos
clc
clear
syms r I % I = current, r = radius
a = 2;
b = 5;
c = 7;
B = piecewise(r<=0 & r>=a,((r/a)^2)*I, r>=a & r<=b, I, r>=b & r<=c, (c^2-r^2)/(c^2-b^2), r>c, 0);
fplot(B)
ax = gca;
ax.XAxisLocation = 'origin';
ax.YAxisLocation = 'origin';
grid on
title('\color[rgb]{0,0.5,0.5} Magentic Flux Density Magnitude')
xlabel('\sl \color[rgb]{0,0.5,0.5} r Radial Distance (cm)')
ylabel('\sl \color[rgb]{0,0.5,0.5} H Magnetic field magnitude (A/cm)')
Above is a what I would like to plot, but I recieve errors plotting. Below are my errors, I would like some guidance on how to correct my errors.
piecewise(2 <= r & r <= 5, I, 5 <= r & r <= 7, sym(49/24) - r^2/24, 7 < r, 0)
Error using fplot>singleFplot (line 240)
Input must be a function or functions of a single variable.
Error in fplot>@(f)singleFplot(cax,{f},limits,extraOpts,args) (line 200)
hObj = cellfun(@(f) singleFplot(cax,{f},limits,extraOpts,args),fn{1},'UniformOutput',false);
Error in fplot>vectorizeFplot (line 200)
hObj = cellfun(@(f) singleFplot(cax,{f},limits,extraOpts,args),fn{1},'UniformOutput',false);
Error in fplot (line 166)
hObj = vectorizeFplot(cax,fn,limits,extraOpts,args);
Thanks in advance!
Respuestas (1)
Star Strider
el 25 de Oct. de 2020
The Symbolic Math Toolbox and here particularly the piecewise funciton may not be the best option for this problem.
Use ordinary MATLAB plotting fucntions and code the piecewise expression and plot it as demonstrated here (not your function):
f = @(x) (2-2*x).*(x <= 0) + (2+2*x).*(x>0);
t = linspace(-3, 3);
figure
plot(t, f(t))
grid
ylim([0 max(ylim)])
Your function has two variables, ‘r’ and ‘I’, so it would have to be coded as:
B = @(r,I) (r<=0 & r>=a) .*(((r/a)^2)*I) + (r>=a & r<=b).*I + (I).*((c^2-r^2)/(c^2-b^2)) + (r>c).*(0);
5 comentarios
Jonathan Hawkins
el 25 de Oct. de 2020
Walter Roberson
el 25 de Oct. de 2020
Your B is defined in terms of current and radius. You are trying to invoke B in terms of just t.
What is the formula for varying current with respect to time?
What is the formula for varying radius with respect to time?
Perhaps you should be using fsurf() with current and radius parameters and no time parameter?
Star Strider
el 25 de Oct. de 2020
Walter — Thank you!
Jonathan Hawkins
el 26 de Oct. de 2020
Star Strider
el 26 de Oct. de 2020
Our pleasure!
If my Answer helped you solve your problem, please Accept it!
.
Categorías
Más información sobre Chebyshev en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!