主にオムニです。

Dependencies:   EC mbed HCSR04

Fork of asimawari by yuto kawamura

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers max_determine.h Source File

max_determine.h

00001 
00002 double max()
00003 {
00004     double m=0;
00005     for(i=0; i<=2; i++) {
00006         
00007         double MAX=fabs(M[i]);
00008         if(MAX >= m) {
00009             m=MAX;
00010         }
00011 
00012     }
00013     return m;
00014 }