Store a series of numbers into a 4 by 4 matrix, starting with the first few positions going right and down, and leaving the rest of the matrix filled with NaN.
So if A = [1 2 3 4 4 5]
B = [ 1 2 3 4; 4 5 NaN NaN; NaN NaN NaN NaN; NaN NaN NaN NaN]
Solution Stats
Problem Comments
5 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers37
Suggested Problems
-
10712 Solvers
-
Sum all integers from 1 to 2^n
17438 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2832 Solvers
-
13261 Solvers
-
Find the largest value in the 3D matrix
1666 Solvers
More from this Author23
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Unless something has changed in the newest version of MATLAB, isequal doesn't work with NaNs.
Nan will be studied in the UICBioE240 9.79. Be patient...
I think test suite should use assert(isequalwithequalnans(y,y_correct))
isequal(NaN,NaN)
ans = 0
isequaln(NaN,NaN)
ans = 1
Test suite has been fixed and additional cases are added.