Problem 42605. UICBioE240 problem 1.11
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
Show
2 older comments
Björn
on 3 Dec 2015
I think test suite should use assert(isequalwithequalnans(y,y_correct))
Jihye Sofia Seo
on 17 Feb 2017
isequal(NaN,NaN)
ans = 0
isequaln(NaN,NaN)
ans = 1
Dyuman Joshi
on 15 Jul 2021
Test suite has been fixed and additional cases are added.
Solution Comments
Show commentsProblem Recent Solvers32
Suggested Problems
-
1648 Solvers
-
find the maximum element of the matrix
510 Solvers
-
292 Solvers
-
845 Solvers
-
Test Problem; Create a 5x5 array containing all ones
389 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!