Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Matlab で、値の 2 列目が最初の列の時間の関数である時系列データセットが与えられ、値の 2 列目を積分する必要がある場合、関数なしでそれを行うにはどうすればよいですか?
trapz関数を使用しないでください。これは Octave にありますが、台形法を使用する Matlab でも同じはずです。
オクターブ-3.6.2.exe:1> x=1:5 x =
1 2 3 4 5
オクターブ-3.6.2.exe:2> y=x.*x y =
1 4 9 16 25
octave-3.6.2.exe:3> Area=trapz(x,y) Area = 42