Joon
- 85
- 2
The discussion revolves around modifying a Fibonacci function in Matlab to return only the nth number of the sequence, rather than the entire sequence. The scope includes programming techniques and approaches to efficiently compute the desired output.
Participants do not appear to reach a consensus on the best approach to modify the function, with multiple viewpoints and methods being discussed without resolution.
Some participants' comments suggest a reliance on specific programming knowledge and techniques, which may not be universally applicable. There is also a lack of clarity on the exact requirements of the function modification.
Individuals interested in Matlab programming, particularly those working on homework related to functions and sequences, may find this discussion beneficial.
Joon said:For example, I know that c = A(2,2:2:end); sets c equal to columns {2,4,6,8,10} of row 2 of A
and that c=A(2,2) sets c equal to the number that is in row 2 column 2 of A.