?? convertconditional.m
字號:
function str=convertconditional(str)goon=1;temp=findstr(str,'~=');while ~isempty(temp) str=[str(1:temp(1)-1),'/=',str(temp(1)+2:length(str))]; temp=findstr(str,'~=');endtemp=findstr(str,'~');while ~isempty(temp) str=[str(1:temp(1)-1),'.not.',str(temp(1)+1:length(str))]; temp=findstr(str,'~');endtemp=findstr(str,'|');while ~isempty(temp) str=[str(1:temp(1)-1),'.or.',str(temp(1)+1:length(str))]; temp=findstr(str,'|');endtemp=findstr(str,'&');while ~isempty(temp) str=[str(1:temp(1)-1),'.and.',str(temp(1)+1:length(str))]; temp=findstr(str,'&');end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -