Skip to content

Instantly share code, notes, and snippets.

View pglira's full-sized avatar
🎯
Focusing

Philipp Glira pglira

🎯
Focusing
View GitHub Profile
@pglira
pglira / simple_app.m
Created March 15, 2021 11:22
Simple app build with Matlab 2021a
function simple_app
figMain = uifigure;
figMain.Name = 'Simple app';
% Main grid
gridMain = uigridlayout(figMain, [1 2]); % 1 row, 2 columns
gridMain.ColumnWidth = {350, '1x'};
% Axes