Borrar filtros
Borrar filtros

Write a function that takes an input argument n, checks whether or not n is positive, and then provides the sum: 1 + √2/2! + √3/3! + ⋯ + √n/n!.

1 visualización (últimos 30 días)
Write a function that takes an input argument n, checks whether or not n is positive, and then provides the sum: 1 + √2/2! + √3/3! + ⋯ + √n/n!.

Respuestas (2)

James Tursa
James Tursa el 21 de Oct. de 2016
Editada: James Tursa el 21 de Oct. de 2016
1) Create a function file called myfunction.m in your working directory. E.g.,
edit myfunction.m
2) Put the following code into this file:
function result = myfunction(n)
% Insert your n check code here
result = 0; % initialize the result
% Insert a loop here to add the terms to result
return
end
Insert your code for n checking and term adding into the places indicated. Also add comments to this file to state the purpose of the function, show the calling syntax, and explain what the inputs and outputs are.

Soma Ardhanareeswaran
Soma Ardhanareeswaran el 21 de Oct. de 2016
The 'while' statement example in the following link is a good starting point - https://www.mathworks.com/help/matlab/matlab_prog/loop-control-statements.html

Categorías

Más información sobre Loops and Conditional Statements 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