代码搜索结果

找到约 2,356 项符合 Measurement 的代码

kalman.c

/* Tracking of rotating point. Rotation speed is constant. Both state and measurements vectors are 1D (a point angle), Measurement is the real point angle + gaussian noise. The re

add_observation_noise.m

function z= add_observation_noise(z,R, addnoise) %function z= add_observation_noise(z,R, addnoise) % % Add random measurement noise. We assume R is diagonal. if addnoise == 1 len= size(

observe_heading.m

function observe_heading(phi, useheading) %function observe_heading(phi, useheading) % % Perform state update for a given heading measurement, phi, % with fixed measurement noise: sigmaPhi global

add_observation_noise.m

function z= add_observation_noise(z,R, addnoise) % Add random measurement noise. We assume R is diagonal. if addnoise == 1 len= size(z,2); if len > 0 z(1,:)= z(1,:) + randn(

readme.txt

Simple GPIB Communication in Visual VB.NET with Measurement Studio 6.0 Active X Controls With this example, you can use the Measurement Studio GPIB (CWGPIB) control to write to and read from a GPIB

67. f28xx pmsm3_2:3-phase sensored field oriented control.txt

Sensorless FOC (Field Oriented Control) for a 3 phase PMSM (Permanent magnet synchronous motor) using a "low cost" current measurement method for closed loop torque control. Position estimation is imp

66. f28xx pmsm3_1:3-phase sensored field oriented control.txt

Sensored FOC (Field Oriented Control) for a 3 phase PMSM (Permanent Magnet Synchronous Motor) using a "low cost" current measurement method for closed loop torque control. Position measurement is impl

61. f28xx aci3_1:three phase aci control with constant v/h.txt

Variable speed controlled 3 phase AC induction motor using a Volts / Hz control scheme together with a Space vector PWM modulation technique. "Tacho" based shaft speed measurement implemented using on

l_gu.m

function units=l_gu(wlog,mnem) % Get units of measurement of curve with mnemonic "mnem" from log data set "wlog" % If S4M.case_sensitive is set to false, the case of the curve mnemonic is disregarded.

initialvalues.java

class Measurement { boolean t; char c; byte b; short s; int i; long l; float f; double d; void print() { System.out.println( "Data type Inital value\n" +