1 Star 0 Fork 7

夏汉林/nwcommands

forked from 连享会/nwcommands 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
_nwnodeid.ado 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
ThomasGrund 提交于 2015-09-18 19:13 . v1.5.1
capture program drop _nwnodeid
program _nwnodeid
syntax [anything(name=netname)], nodelab(string) [detail]
_nwsyntax `netname'
mata: st_rclear()
mata: st_global("r(netname)", "`netname'")
mata: st_global("r(nodelab)", "`nodelab'")
capture confirm integer number `nodelab'
if _rc == 0 {
if `nodelab' > `nodes' {
mata: st_numscalar("r(nodeid)", -1)
di "{err}{it:nodelab} {bf:`nodelab'} out of bounds"
error 600021
}
mata: st_numscalar("r(nodeid)", `nodelab')
exit
}
else {
nwname `netname'
local labs "`r(labs)'"
mata: st_rclear()
mata: st_global("r(netname)", "`netname'")
mata: st_global("r(nodelab)", "`nodelab'")
local i = 1
local found = 0
capture foreach onelab in `labs' {
noi if "`onelab'" == "`nodelab'"{
mata: st_numscalar("r(nodeid)", `i')
local found = 1
di
if "`detail'" == "detail" {
di "{hline 40}"
di "{txt} Network: {res}`netname'"
di "{hline 40}"
di "{txt} Nodeid : {res}`r(nodeid)'"
di "{txt} Nodelab : {res}`r(nodelab)'"
}
exit 1
}
local i = `i' + 1
}
if `found' == 0 {
mata: st_numscalar("r(nodeid)", -1)
di "{err}{it:nodelab} `nodelab' not found"
error 6012
}
}
end
*! v1.5.0 __ 17 Sep 2015 __ 13:09:53
*! v1.5.1 __ 17 Sep 2015 __ 14:54:23
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xiahanlin/nwcommands.git
git@gitee.com:xiahanlin/nwcommands.git
xiahanlin
nwcommands
nwcommands
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385