TFormMainProgramMatrixManipNov112020 = class(TForm)
// Here's PUBLISHED section
Button1: TButton;
// .............................
MenuItem9: TMenuItem;
procedure FormCreate(Sender: TObject);
procedure MenuItem5Click(Sender: TObject);
private
// if other units that uses this unit do not need following procedures, put them in private sector.
procedure GetMatrixAelements;
Procedure GetMatrixBelements;
public
// Define a procedure / function that should be open to other untis here. You don't need (Sender:TObject)
procedure MultiplyMatrixAxMatrixB;
end;