本文整理汇总了C#中SWIGTYPE_p_double类的典型用法代码示例。如果您正苦于以下问题:C# SWIGTYPE_p_double类的具体用法?C# SWIGTYPE_p_double怎么用?C# SWIGTYPE_p_double使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SWIGTYPE_p_double类属于命名空间,在下文中一共展示了SWIGTYPE_p_double类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: velocityMove
public virtual bool velocityMove(SWIGTYPE_p_double sp)
{
bool ret = yarpPINVOKE.IVelocityControl_velocityMove__SWIG_1(swigCPtr, SWIGTYPE_p_double.getCPtr(sp));
return ret;
}
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:IVelocityControl.cs
示例2: SpectrumMismatchRBFKernel
public SpectrumMismatchRBFKernel(StringCharFeatures l, StringCharFeatures r, int size, SWIGTYPE_p_double AA_matrix_, int nr_, int nc_, int degree, int max_mismatch, double width) : this(modshogunPINVOKE.new_SpectrumMismatchRBFKernel__SWIG_2(StringCharFeatures.getCPtr(l), StringCharFeatures.getCPtr(r), size, SWIGTYPE_p_double.getCPtr(AA_matrix_), nr_, nc_, degree, max_mismatch, width), true) {
if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
}
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:3,代码来源:SpectrumMismatchRBFKernel.cs
示例3: StreamingByteFeatures
public StreamingByteFeatures(ByteFeatures simple_features, SWIGTYPE_p_double lab) : this(modshogunPINVOKE.new_StreamingByteFeatures__SWIG_2(ByteFeatures.getCPtr(simple_features), SWIGTYPE_p_double.getCPtr(lab)), true) {
if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
}
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:3,代码来源:StreamingByteFeatures.cs
示例4: StreamingFileFromSparseUlongFeatures
public StreamingFileFromSparseUlongFeatures(SWIGTYPE_p_CSparseFeaturesT_unsigned_long_long_t feat, SWIGTYPE_p_double lab) : this(modshogunPINVOKE.new_StreamingFileFromSparseUlongFeatures__SWIG_2(SWIGTYPE_p_CSparseFeaturesT_unsigned_long_long_t.getCPtr(feat), SWIGTYPE_p_double.getCPtr(lab)), true) {
if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
}
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:3,代码来源:StreamingFileFromSparseUlongFeatures.cs
示例5: getPowerSupplyVoltage
public virtual bool getPowerSupplyVoltage(int j, SWIGTYPE_p_double val)
{
bool ret = yarpPINVOKE.IAmplifierControl_getPowerSupplyVoltage(swigCPtr, j, SWIGTYPE_p_double.getCPtr(val));
return ret;
}
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:IAmplifierControl.cs
示例6: getPWMLimitRaw
public virtual bool getPWMLimitRaw(int j, SWIGTYPE_p_double val)
{
bool ret = yarpPINVOKE.IAmplifierControlRaw_getPWMLimitRaw(swigCPtr, j, SWIGTYPE_p_double.getCPtr(val));
return ret;
}
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:IAmplifierControlRaw.cs
示例7: getOutputRaw
public virtual bool getOutputRaw(int j, SWIGTYPE_p_double v)
{
bool ret = yarpPINVOKE.IOpenLoopControlRaw_getOutputRaw(swigCPtr, j, SWIGTYPE_p_double.getCPtr(v));
return ret;
}
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:IOpenLoopControlRaw.cs
示例8: getTorqueRangesRaw
public virtual bool getTorqueRangesRaw(SWIGTYPE_p_double min, SWIGTYPE_p_double max)
{
bool ret = yarpPINVOKE.ITorqueControlRaw_getTorqueRangesRaw(swigCPtr, SWIGTYPE_p_double.getCPtr(min), SWIGTYPE_p_double.getCPtr(max));
return ret;
}
开发者ID:johnty,项目名称:YarpUnity,代码行数:5,代码来源:ITorqueControlRaw.cs
示例9: getBemfParamRaw
public virtual bool getBemfParamRaw(int j, SWIGTYPE_p_double bemf)
{
bool ret = yarpPINVOKE.ITorqueControlRaw_getBemfParamRaw(swigCPtr, j, SWIGTYPE_p_double.getCPtr(bemf));
return ret;
}
开发者ID:johnty,项目名称:YarpUnity,代码行数:5,代码来源:ITorqueControlRaw.cs
示例10: getTorquePidOutputRaw
public virtual bool getTorquePidOutputRaw(int j, SWIGTYPE_p_double arg1)
{
bool ret = yarpPINVOKE.ITorqueControlRaw_getTorquePidOutputRaw(swigCPtr, j, SWIGTYPE_p_double.getCPtr(arg1));
return ret;
}
开发者ID:johnty,项目名称:YarpUnity,代码行数:5,代码来源:ITorqueControlRaw.cs
示例11: getTorquePidOutputsRaw
public virtual bool getTorquePidOutputsRaw(SWIGTYPE_p_double outs)
{
bool ret = yarpPINVOKE.ITorqueControlRaw_getTorquePidOutputsRaw(swigCPtr, SWIGTYPE_p_double.getCPtr(outs));
return ret;
}
开发者ID:johnty,项目名称:YarpUnity,代码行数:5,代码来源:ITorqueControlRaw.cs
示例12: getTorqueErrorRaw
public virtual bool getTorqueErrorRaw(int j, SWIGTYPE_p_double err)
{
bool ret = yarpPINVOKE.ITorqueControlRaw_getTorqueErrorRaw(swigCPtr, j, SWIGTYPE_p_double.getCPtr(err));
return ret;
}
开发者ID:johnty,项目名称:YarpUnity,代码行数:5,代码来源:ITorqueControlRaw.cs
示例13: RealMatrix
public RealMatrix(SWIGTYPE_p_double m, int nrows, int ncols) : this(modshogunPINVOKE.new_RealMatrix__SWIG_2(SWIGTYPE_p_double.getCPtr(m), nrows, ncols), true) {
if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
}
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:3,代码来源:RealMatrix.cs
示例14: getRefAccelerations
public virtual bool getRefAccelerations(SWIGTYPE_p_double accs)
{
bool ret = yarpPINVOKE.IVelocityControl_getRefAccelerations__SWIG_0(swigCPtr, SWIGTYPE_p_double.getCPtr(accs));
return ret;
}
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:IVelocityControl.cs
示例15: set_model_params
public void set_model_params(SWIGTYPE_p_double pos_params, SWIGTYPE_p_double neg_params, int seq_length, int num_symbols) {
modshogunPINVOKE.PluginEstimate_set_model_params(swigCPtr, SWIGTYPE_p_double.getCPtr(pos_params), SWIGTYPE_p_double.getCPtr(neg_params), seq_length, num_symbols);
if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
}
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:4,代码来源:PluginEstimate.cs
示例16: getRefTorquesRaw
public virtual bool getRefTorquesRaw(SWIGTYPE_p_double t)
{
bool ret = yarpPINVOKE.ITorqueControlRaw_getRefTorquesRaw(swigCPtr, SWIGTYPE_p_double.getCPtr(t));
return ret;
}
开发者ID:johnty,项目名称:YarpUnity,代码行数:5,代码来源:ITorqueControlRaw.cs
示例17: getPeakCurrentRaw
public virtual bool getPeakCurrentRaw(int m, SWIGTYPE_p_double val)
{
bool ret = yarpPINVOKE.IAmplifierControlRaw_getPeakCurrentRaw(swigCPtr, m, SWIGTYPE_p_double.getCPtr(val));
return ret;
}
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:IAmplifierControlRaw.cs
示例18: getTorqueErrorLimitsRaw
public virtual bool getTorqueErrorLimitsRaw(SWIGTYPE_p_double limits)
{
bool ret = yarpPINVOKE.ITorqueControlRaw_getTorqueErrorLimitsRaw(swigCPtr, SWIGTYPE_p_double.getCPtr(limits));
return ret;
}
开发者ID:johnty,项目名称:YarpUnity,代码行数:5,代码来源:ITorqueControlRaw.cs
示例19: getMaxCurrentRaw
public virtual bool getMaxCurrentRaw(int j, SWIGTYPE_p_double v)
{
bool ret = yarpPINVOKE.IAmplifierControlRaw_getMaxCurrentRaw(swigCPtr, j, SWIGTYPE_p_double.getCPtr(v));
return ret;
}
开发者ID:dcam0050,项目名称:Unity-Yarp-Integration,代码行数:5,代码来源:IAmplifierControlRaw.cs
示例20: distances_rhs
public void distances_rhs(SWIGTYPE_p_double result, int idx_b1, int idx_b2, int idx_a) {
modshogunPINVOKE.CDistanceMachine_distances_rhs(swigCPtr, SWIGTYPE_p_double.getCPtr(result), idx_b1, idx_b2, idx_a);
if (modshogunPINVOKE.SWIGPendingException.Pending) throw modshogunPINVOKE.SWIGPendingException.Retrieve();
}
开发者ID:Anshul-Bansal,项目名称:gsoc,代码行数:4,代码来源:CDistanceMachine.cs
注:本文中的SWIGTYPE_p_double类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论