I am getting a Error using alpha (line 68) Wrong number of arguments and was wondering if anyone could help me out because i am not sure what its saying.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
alpha in degree
range=0:15:360;
Y=sind(range);
Table=[range;Y]';
disp('HW #6 - Evan Melanson');
disp('Problem #2');
VarNames = {'aplha (degrees)', 'sin(aplha)'};
fprintf(1, ' %s\t%s\t\n', VarNames{:});
fprintf(1, '\t%.1f\t%.4f\n', Table');
plot(range,Y);
title('sin(alpha) vs alpha');
xlabel('alpha (degrees)');
ylabel('sin(alpha)');
grid on
%if you get it to work thank you!
0 comentarios
Respuestas (1)
Stephen23
el 18 de Nov. de 2021
Editada: Stephen23
el 18 de Nov. de 2021
% alpha in degree <<<<<< This needs to be a comment, not code.
range=0:15:360;
Y=sind(range);
Table=[range;Y]';
disp('HW #6 - Evan Melanson');
disp('Problem #2');
VarNames = {'aplha (degrees)', 'sin(aplha)'};
fprintf(1, ' %s\t%s\t\n', VarNames{:});
fprintf(1, '\t%.1f\t%.4f\n', Table');
plot(range,Y);
title('sin(alpha) vs alpha');
xlabel('alpha (degrees)');
ylabel('sin(alpha)');
grid on
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!