Borrar filtros
Borrar filtros

Engineering arrays zybooks problem

4 visualizaciones (últimos 30 días)
Nathan
Nathan el 15 de Sept. de 2022
Respondida: Souvik Das el 22 de Sept. de 2022
function dailyMaterialSum = MaterialSum (weightArray)
% Write a function that sums the elements of the weightArray
% and prints the result to 2 decimal points
dailyMaterialSum = fprintf ('%.2f',(MaterialSum (weightArray)))
end

Respuesta aceptada

Souvik Das
Souvik Das el 22 de Sept. de 2022
The code below sums up the elements of the array and displays the result upto 2 decimal places.
function dailyMaterialSum = MaterialSum (weightArray)
% Write a function that sums the elements of the weightArray
% and prints the result to 2 decimal points
dailyMaterialSum = sum(weightArray);
fprintf('%.2f',dailyMaterialSum);
end
Also please follow the link below for the round function which might be useful too.

Más respuestas (0)

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by