I want to insert a matrix
which had null elements in Matlab, How can I do that?
for example consider this matrix
:
R=[1,null,3,4,5 | 6,7,null,8,null | null,null, 9,10,11]
Note that:
- I separate columns by "|".
- R is kind of Sparse Matrix.
- These null values can't be zero or any special number.
Thanks for any help!