get class name and plot it in variables window.
    6 次查看(过去 30 天)
  
       显示 更早的评论
    
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.
0 个评论
回答(1 个)
  Yukthi S
 2024-10-2
        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
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 MATLAB Mobile Fundamentals 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


