
How to plot a simple function that has a variable?
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jonathan Whiting
el 16 de Nov. de 2018
The question I have is:
Write a MATLAB function
func(x,a) = x^2 + ax - 6
Use the function to plot, func(x,1), func(x,2) and func(x,3) on the same axes, for -10<x<10.
Im really confused how to define a as 1, 2 and 3 and how to substitute them into the function.
0 comentarios
Respuesta aceptada
madhan ravi
el 16 de Nov. de 2018
Editada: madhan ravi
el 16 de Nov. de 2018
Read about fplot()
syms x
for a=1:3
func = x^2 + a*x - 6 ;
fplot(func,[-10 10]) %ranging from -10 to 10
hold on
end

Más respuestas (2)
TADA
el 16 de Nov. de 2018
func = @(x,a) x^2 + a*x - 6;
x = -10:0.1:10;
for a = 1:3
plot(x, func(x,a ));
hold on;
end
0 comentarios
Stephen23
el 16 de Nov. de 2018
You can do this very simply by defining a normal function handle:
>> F = @(x,a) x.^2 + a*x - 6;
>> X = -10:.1:10;
>> plot(X,F(X,1),'r', X,F(X,2),'g', X,F(X,3),'b')

0 comentarios
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!