I'd like to write a matrix evaluation tool.(add, multiply, inverse etc.)
So I need some way to manually input the values of a matrix.
I don't want the input to be console like : "Give val for r1,c2" or something like that.
I want a forms app with a table input.
I can think of two options here:
1) A TableLayoutPanel filled with TextBoxes
2) A DataGridView
What should I decide on? Are there other and possibly better alternatives? Any help on this matter is more than welcome.