Labfans是一个针对大学生、工程师和科研工作者的技术社区。 论坛首页 | 联系我们(Contact Us)
MATLAB爱好者论坛-LabFans.com
返回   MATLAB爱好者论坛-LabFans.com > 其它 > 资料存档
资料存档 资料存档
 
 
主题工具 显示模式
旧 2019-11-24, 00:00   #1
poster
高级会员
 
注册日期: 2019-11-21
帖子: 3,006
声望力: 66
poster 正向着好的方向发展
默认 convert class form matlab to python

I am new in python and trying to convert the following code from Matlab to python (I have problem with the class definition here)

in matlab: classdef TGrid < handle

properties % properties common for all grids
NzEarth % number of Earth layers Nza % number of air layers end

methods

%set airLayers for the grid function obj = setAirLayers(obj,varargin) Method = 'fixed height'; % OPTIONS: mirror, Fixed Height, Read From File MaxHeight = 10^6 ; % Fixed height of top nzAir = 15 ; % number of layers InputFile = []; n = length(varargin); if mod(n,2) error('Arguments must occur in pairs') end for k = 1:2:n option = lower(varargin{k}); switch option case 'method' Method = lower(varargin{k+1}); nzAir = 10; case 'maxheight' MaxHeight = varargin{k+1}; case 'nlayers' nzAir = varargin{k+1}; case 'inputfile' InputFile = varargin{k+1}; end end switch Method case 'mirror' dzAir = obj.Dz(obj.Nza+1:obj.Nza+nzAir).*(3.^(0:nzAir-1))'; case 'fixed height' z1_log = log10(obj.Dz(1)); dlogz = (log10(MaxHeight)-z1_log)/(nzAir); z = 10.^(z1_log:dlogz:log10(MaxHeight)); dzAir = diff(z); case 'read from file' fid = fopen(InputFile); [dzAir,nzAir] = fscanf(fid,'%f','inf'); end [n,~] = size(dzAir); if n == 1 dzAir = dzAir.'; end obj.Nza = nzAir; obj.Dz = [dzAir(end:-1:1) ; obj.Dz]; obj.Nz = length(obj.Dz); obj.dualLengths; obj.setIndices; end % setAirLayers end % methods end % classdef

more...
poster 当前离线   回复时引用此帖
 


发帖规则
不可以发表新主题
不可以发表回复
不可以上传附件
不可以编辑自己的帖子

启用 BB 代码
论坛禁用 表情符号
论坛启用 [IMG] 代码
论坛启用 HTML 代码



所有时间均为北京时间。现在的时间是 19:13


Powered by vBulletin
版权所有 ©2000 - 2025,Jelsoft Enterprises Ltd.