Matrix input

If I have a matrix input:
A=[. . . 25;
12 . . .]
dots mean that there are no value for that i-j combination. Zeros are not appropriate since the inputs will be used for division.
Are the dots interpreted as non-existance of i-j combination, or there is another way to declare this matrix?
Thanks.

using missing as a value here

1 Like

Thank you!