get class name and plot it in variables window.
Show older comments
Hello everyone!
I have a question about create class
I want to have classname like this in variables window:
val = (classname)
nch: 4
N: 8192
F: 100
df: 0.012207
T: 81.92
dt: 0.01
quantity: force,acc
sifactor: 1
labels: 1F,1A
How can I do that? Thank you all.
Answers (1)
Yukthi S
on 2 Oct 2024
I got that you want to create a class with the given properties. Below code is a step-by-step guide to define a MATLAB class.
classdef YourClassName
properties
nch
N
F
df
T
dt
quantity
sifactor
labels
end
methods
% Constructor method to initialize the properties
function obj = YourClassName(nch, N, F, df, T, dt, quantity, sifactor, labels)
if nargin > 0
obj.nch = nch;
obj.N = N;
obj.F = F;
obj.df = df;
obj.T = T;
obj.dt = dt;
obj.quantity = quantity;
obj.sifactor = sifactor;
obj.labels = labels;
end
end
end
end
To create an instance of the class defined and view it in the command window, enter the below code:
val = YourClassName(4, 8192, 100, 0.012207, 81.92, 0.01, 'force,acc', 1, '1F,1A')
You can find the information on creating classes in MATLAB in the below MathWorks documentation:https://www.mathworks.com/help/matlab/matlab_oop/create-a-simple-class.html
1 Comment
Le Xuan Thang
on 3 Oct 2024
Categories
Find more on MATLAB Mobile Fundamentals in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!