MATLAB Client Interface Example
Blocking Call
>> a = rand(400); >> b = rand(400,1); >> c = netsolve('LinearSystem',a,b)
Non-Blocking Call
>> a = rand(400); >> b = rand(400,1); >> r = netsolve_nb('send','LinearSystem',a,b) r = 0 >> c = netsolve_nb('probe',0) Not ready yet >> c = netsolve_nb('wait',0)