could really use some help with this assignment. I'm not sure where to start. Below is the info given in the lecture to help with the assignment

could really use some help with this assignment. I'm not sure where to start. Below is the info given in the lecture to help with the assignment
Default Arguments Example
function [O1, O2] = F1(I1,I2)
if isempty(I1) I1 = 10; end % Assign 10 if empty
if isempty(I2) I2 = 5; end % Assign 5 if empty
or Loop Example from Help
for R = 1:N
for C = 1:N
A(R,C) = 1/(R+C-1);
end
end
% R is the row number from 1 to N
% C is the column number from 1 to N
% Formula for value in array
% end the loop with C
% end the loop with R
for Loops Example with Break
Very useful for sums and Taylor series
function e = exp1(N)
e = 0;
for k = 0:N
add = 1/factorial(k);
e = add + e;
if add < 1E-10 break; end
end
while Loops • In a while loop, a command or group of commands is executed as long as condition is true
x = 1;
while x <= 15,
x = 2*x;
end

1 Commento

I cannot even read the screenshot. As usual for homework questions: Please post, what you have tried so far and ask a specific question. The forum should not solve your homework.

Accedi per commentare.

Risposte (1)

Looks like you've been given everything you need. Post the code you've tried so far and the errors you're getting and you're more likely to get help here.

Categorie

Scopri di più su Graphics Performance in Centro assistenza e File Exchange

Prodotti

Tag

Non è stata ancora inserito alcun tag.

Richiesto:

il 26 Set 2017

Commentato:

Jan
il 27 Set 2017

Community Treasure Hunt

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

Start Hunting!

Translated by