Reputation: 137
suppose i have few variables a
, b
, c
, and d
have some numerical values. How can I calculate their median in MATLAB?
x= median(a,b,c,d); is not working.
Note: a
, b
, c
, and d
are variables defined by a few equations and have numerical values.
Upvotes: 1
Views: 106