Files
imdd_silas/Classes/Warehouse_class/classes/Parameter.m
Silas Oettinghaus 3ea6439947 - bring FWM plots back to life!
- some dispersion plots with the great help of chatGPT :-D
2025-10-17 11:50:27 +02:00

8 lines
164 B
Matlab

classdef Parameter < StorageParameter
methods
function obj = Parameter(varargin)
obj@StorageParameter(varargin{:});
end
end
end