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 Solvers8
Suggested Problems
-
1334 Solvers
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1309 Solvers
-
Removing rows from a matrix is easy - but what about inserting rows?
266 Solvers
-
436 Solvers
-
742 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!