Hi, I am trying to write a matlab code into python, in this code each class is define in separate code, fro example, when it reads the first class function it goes to the other class in other code and do some structure and back previous step, (I am new to python, my Q is that should I start from last class and I should write each class in separate code like matlab?)
this is part of first class which goes to other class in other code and follow some rules and back.
classdef TModelParameterCell1D_Iso < TModelParameterCell1D % class for 1D model parameters
properties
end
methods
%*******************************************************************
function obj = TModelParameterCell1D_Iso(varargin)
% class constructor
obj = obj@TModelParameterCell1D( varargin{:});
end
end
end
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.