Calling Functions Vectors Array
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
T
el 6 de Oct. de 2013
Comentada: T
el 6 de Oct. de 2013
Suppose I have the following function:
function c = relation( n )
if n==0
c = 1;
elseif n==1
syms x
c = [x 0];
else
syms x
c = ((2*n-1)*x*[relation(n-1),0] - (n-1)*[0,0,relation(n-2)])/n;
sum(c)
end
Suppose I choose n = 8, c will output an array but that's not useful to me. I want to plot the polynomial, so I use sum(c) and copy and paste the output and plot it. Is there a way to call 'c' ?
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 6 de Oct. de 2013
syms x
c1 = ((2*n-1)*x*[relation(n-1),0] - (n-1)*[0,0,relation(n-2)])/n;
c=sum(c1)
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!