Borrar filtros
Borrar filtros

How to check for empty matrix, scalar and vector without builtin functions

1 visualización (últimos 30 días)
I am lost on this. How do I check for empty matrix, scalar or vector without using these builtin functions: isempty, isscalar, and is vector?
Some help will be appreciated.
Thanks

Respuesta aceptada

Star Strider
Star Strider el 26 de Abr. de 2015
Using the size function is an option:
x = []
sx = size(x)
produces:
x =
[]
sx =
0.0000e+000 0.0000e+000
Since this seems to be a homework assignment, I leave the rest to you.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by