input and output functions

7 vues (au cours des 30 derniers jours)
N/A
N/A le 24 Nov 2020
Commenté : N/A le 24 Nov 2020
Please let me know how to fix my code so that mat lab will run.
Here is my work so far:
I created a file and saved it as Fibseq.m
for k=3:n
[f]=fibseq(n)
f(k)=f(k-1)+f(k-2)
%
end
I created a new live script and attempted to run it.
f(1)=1;
f(2)=2;
fibseq(20)
Here is the homework prompt:

Réponse acceptée

Jan
Jan le 24 Nov 2020
  1. Name your function fibseq. So call it fibseq.m, not "Fibseq.m". The case matters in Matlab.
  2. It will have one input n and one output f:
function f = fibseq(n)
3. Body :
f = zeros(1, n); % Pre-allocation
f(1) = 1;
f(2) = 2;
for k = 3:n
f(k) = f(k-1) + f(k-2);
end
end
Ready.
  2 commentaires
N/A
N/A le 24 Nov 2020
I did what you mentioned. MAT LAB asks to change the name fibseq to untitled, so I changed the name of the document to fibseq.mlx and now I cannot get MAT LAB to run no matter what I do. Please advise.
N/A
N/A le 24 Nov 2020
It works now. Thank you.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur GPU Computing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by