How to combine 2 functions in one graph with different line
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
farizah
el 17 de Nov. de 2014
Comentada: farizah
el 17 de Nov. de 2014
How do I combine this two functions x1=6sin((5.6309x10^9)t) and x2=sin((5.6309x10^9)t)in one graph with two different color of the line. The value of t=(0:0.1:5)
0 comentarios
Respuesta aceptada
MA
el 17 de Nov. de 2014
clear all
close all
clc;
t=0:0.1:5;
x1=6*sin((5.6309*10^9)*t);
x2=sin((5.6309*10^9)*t);
plot(t,x1,'b',t,x2,'r')
legend('x1','x2')
Más respuestas (0)
Ver también
Categorías
Más información sobre Graph and Network Algorithms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!