⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 is_a_branch_point.m

📁 matlab代码
💻 M
字号:
function result = is_a_branch_point(x,y, branch_list);


%check position (x,y) is in the list or not

% return 1 is true , 0 otherwise


[number, dummy] = size(branch_list);

result = 0;

for i = 1:number


	if branch_list(i,1) == x & branch_list(i,2) == y

		result = 1;
		
		break;

	end;


end;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -