how to tell matlab in a matrix that if my program does not assign value to an element do not fill it with 0?
Show older comments
I'm doing a program in matlab with the gui, which is gauss jordan at the beginning my program is asking for the elements of the matrix but my program can store up to 5x6 then when you enter a 2x3 matrix the others fill it with 0 which I get an error when it comes to giving me results How can I tell him not to fill it with 0?
3 Comments
James Tursa
on 2 Nov 2017
Please provide more detail, with an example showing inputs and desired output. Also post the current code you are using and why you do not like what it is currently doing.
Erwin Avendaño
on 2 Nov 2017
Edited: Walter Roberson
on 2 Nov 2017
Erwin Avendaño
on 2 Nov 2017
Accepted Answer
More Answers (1)
Walter Roberson
on 2 Nov 2017
Edited: Walter Roberson
on 2 Nov 2017
0 votes
There are some ways to prevent a matrix from zero filling as it is extended:
- Do not extend it. Assign it full size at the beginning, and put in some non-zero value for the unused space. For example initialize as nan(3,4)
- If you must extend it, then at each point where it might be extended, check if you are extending it, and carefully assign some non-zero value for the extension areas that are not to be zero filled.
- Instead of using a numeric array, use a cell array initialized to empty arrays until it is completely filled out. You might need to write code to display intermediate results.
2 Comments
Erwin Avendaño
on 2 Nov 2017
Walter Roberson
on 3 Nov 2017
Have you considered using a uitable?
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!