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

8
num2str_new.m Normal file
View File

@@ -0,0 +1,8 @@
function text=num2str_new(x,N)
text=num2str(x);
if length(text)<N
for i=1:N-length(text)
text=['0' text];
end
end
end