Endsieg77's Studio.

matlab 1

2020/12/31 Share

%: notes
%% %%: build a section.


rem(): get remainder.


1
2
3
4
5
6
7
8
9
10
11
switch input_num
case constant1
statement1
case constant2
statement2
...
case constant_n
statement_n
otherwise
statement_default
end

prod(vector): yields vector[1]*…*vector[n]

CATALOG
  1. 1. 1 2 3 4 5 6 7 8 9 10 11 switch input_num case constant1 statement1 case constant2 statement2 ... case constant_n statement_n otherwise statement_default end