i need help balancing the inner matrix dimensions of the two sine functions .
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Weisz Thomas
el 15 de En. de 2019
Comentada: madhan ravi
el 15 de En. de 2019
function mul_sines(f1,f2)
t=0:0.01:20;
s=sin(f1*t)*sin(f2*t+pi);
plot(t,s)
0 comentarios
Respuesta aceptada
madhan ravi
el 15 de En. de 2019
Editada: madhan ravi
el 15 de En. de 2019
mul_sines(50,45) % function call
% f1 ---^^ ^^----- f2
function mul_sines(f1,f2) % function definition
t=0:0.01:20;
s=sin(f1*t).*sin(f2*t+pi);
% ^---- missed dot
plot(t,s)
end
2 comentarios
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!