using fprintf to display multiple values

11 visualizaciones (últimos 30 días)
carlton letts
carlton letts el 6 de Jun. de 2020
Respondida: Ameer Hamza el 7 de Jun. de 2020
i need help with displaying my factorial results
it should be displayed as: exanple The factorial of 3 is 6
heres my code
clear
clc
%the input numbers you want the factorial for%
numlist = input ( ' enter a list of numbers');
numbers = length (numlist);
results =zeros (1, numbers);
for i = 1: numbers;
for ii = i;
facn= prod(1:numlist(i))
fprintf(' The factorial of %.0f is %.0f\n\n',numbers,facn)
end
end

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 7 de Jun. de 2020
Change the line to
fprintf(' The factorial of %.0f is %.0f\n\n',numlist(i),facn)
% ^ use numlist(i) here.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by