get class name and plot it in variables window.

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.

Antworten (1)

Yukthi S
Yukthi S am 2 Okt. 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 Kommentar

Thank you, But I want to create something like the picture on the left hand side, not the right side

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu MATLAB Mobile Fundamentals finden Sie in Hilfe-Center und File Exchange

Produkte

Version

R2024a

Gefragt:

am 2 Okt. 2024

Kommentiert:

am 3 Okt. 2024

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by