摘要:
>> Z = server.rpc('zeros', 2, 3);>> Z = [2x3 double] [2x3 double]>> Z{1}ans = 0 0 0 0 0 0>> Z = server.rpc('zeros', {2,3}, ... 阅读全文
摘要:
#!/bin/bash my_fun() { echo "$#" } echo 'the number of parameter in "$@" is '$(my_fun "$@") echo 'the number of parameter in "$*" is '$(my_fun "$*... 阅读全文