function Edit(parameters)

n = numel(parameters);

%% Auslesen der Bildschirmgröße
scrsz = get(0,'ScreenSize');

%% Anlegen des Hauptfensters 
Figure = figure('Position',[0.3*scrsz(3),0.3*scrsz(4),0.6*scrsz(3),0.6*scrsz(4)],...
                    'Units','normalized',...
                    'Resize','on',...
                    'MenuBar','none',...
                    'Name', 'Hauptfigure',...
                    'NumberTitle','off');

for i = 1:n
    % Anlegen der Textboxen für die Parameter
    textbox_parameter(i) = uicontrol('parent', Figure, ...
                            'style', 'text', ...
                            'enable', 'inactive', ...
                            'string', parameters{i}, ...
                            'units', 'normalized', ...
                            'position', [0.05 0.95-i*0.1 0.2 0.05], ...
                            'fontsize', 12);
                        
    % Anlegen der Textboxen für die Werte
    textbox_wert(i) = uicontrol('parent', Figure, ...
                            'style', 'text', ...
                            'enable', 'inactive', ...
                            'string', '', ...
                            'units', 'normalized', ...
                            'position', [0.3 0.95-i*0.1 0.2 0.05], ...
                            'BackgroundColor', 'green', ...
                            'fontsize', 12);                    
                        
                        
    % Anlegen der Edit-Felder
    edit(i) = uicontrol('parent', Figure, ...
                        'style', 'edit', ...
                        'enable', 'inactive', ...
                        'string', '-', ...
                        'units', 'normalized', ...
                        'position', [0.55 0.95-i*0.1 0.4 0.05], ...
                        'fontsize', 12, ...
                        'Callback', {@edit_Wert});
end                                                 