Suppose you need an empty array.
e = [] will give you one, but it's a double array, which may not help if you need a different type: e(1) = "Hello, world!" will (silently!) set e(1) to NaN, and e(1) = { @sin } will fail outright with an error message.
If you know the type you want, you can get around this easily. For instance, e = cell(0) (or e = cell.empty) will give you an empty cell array, e = string.empty will give you an empty string array, and in general you can do e = <type>.empty for most types (there are exceptions, such as graph, digraph, dictionary etc., which can only be instantiated as scalars).
But what if you don't know the type, and instead need to match a given array dynamically? Well, that's for you to figure out: create a function that accomplishes this: given an array A, create a function that returns an empty array (as determined by isempty()) with type matching that of A.
EDIT: the collection of types in the test suite is not exhaustive; your function should work for any type, and the test suite may change in response to hard-coded solutions.
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers9
Suggested Problems
-
Remove any row in which a NaN appears
8784 Solvers
-
2559 Solvers
-
663 Solvers
-
Back to basics 22 - Rotate a matrix
938 Solvers
-
Create Volcano (or Atoll) martix. It is an extension of Bullseye matrix problem.
162 Solvers
More from this Author19
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!