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
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
Jan
2017-9-27
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.
回答(1 个)
Andrew Bliss
2017-9-27
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.
0 个评论
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!