Initial commit

This commit is contained in:
2025-10-10 17:29:33 +08:00
commit 49047b316d
47 changed files with 323 additions and 0 deletions

18
string_learning.m Normal file
View File

@@ -0,0 +1,18 @@
% str1 = 'I like matlab,';
% str2 = 'JavaScript, and Perl!';
% str3 = [str1 str2];
% disp(str3)
% ansi
% str1 = 'abcdefgh';
% str2 = upper(str1);
% str3 = lower(str2);
% double(str1)
% double(str2)
%
str1 = 'today';
str2 = 'tomorrow';
str3 = 'today';
out1 = strcmp(str1,str2)
out2 = strcmp(str1,str3)