function c = and(a,b)
if isa(a,'dataset') & ~isa(b,'dataset')
c = a.d & b;
elseif ~isa(a,'dataset') & isa(b,'dataset')
c = a & b.d;
else
c = a.d & b.d;
end
return
作者:jeru
email: jeru@163.net
日期:7/3/2001 9:55:32 AM
5)Operators and Assignments
Objective 1)
Determine the result of applying any operator including assignment operators and instanceof to operands
作者:jeru
email: jeru@163.net
日期:7/3/2001 10:00:19 AM
2) Flow control and exception Handling
Objective 1)
Write code using if and switch statements and identify legal argument types for these stat