First commit

This commit is contained in:
L_DelOff
2021-06-12 00:26:34 +03:00
parent f5a74a49e9
commit 584e81ccd7
84 changed files with 12214 additions and 0 deletions

9
myformat.m Normal file
View File

@@ -0,0 +1,9 @@
function text=myformat(x,n)
%% By L_DelOff
% text=myformat(x,n)
% Добавляет нули перед числом, например '01'=myformat(1,2)
text=num2str(x);
while length(text)<n
text=['0' text];
end
end