本文整理汇总了C++中CHECK_ARRAYS函数的典型用法代码示例。如果您正苦于以下问题:C++ CHECK_ARRAYS函数的具体用法?C++ CHECK_ARRAYS怎么用?C++ CHECK_ARRAYS使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了CHECK_ARRAYS函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: af_set_axes_limits_compute
af_err af_set_axes_limits_compute(const af_window wind,
const af_array x, const af_array y, const af_array z,
const bool exact, const af_cell* const props)
{
CHECK_ARRAYS(x, y);
if(z) CHECK_ARRAYS(z);
return CALL(wind, x, y, z, exact, props);
}
示例2: af_skew
af_err af_skew(af_array *out, const af_array in, const float skew0, const float skew1,
const dim_t odim0, const dim_t odim1, const af_interp_type method,
const bool inverse)
{
CHECK_ARRAYS(in);
return CALL(out, in, skew0, skew1, odim0, odim1, method, inverse);
}
示例3: af_transform
af_err af_transform(af_array *out, const af_array in, const af_array transform,
const dim_t odim0, const dim_t odim1,
const af_interp_type method, const bool inverse)
{
CHECK_ARRAYS(in, transform);
return CALL(out, in, transform, odim0, odim1, method, inverse);
}
示例4: af_unwrap
af_err af_unwrap(af_array *out, const af_array in, const dim_t wx, const dim_t wy,
const dim_t sx, const dim_t sy, const dim_t px, const dim_t py,
const bool is_column)
{
CHECK_ARRAYS(in);
return CALL(out, in, wx, wy, sx, sy, px, py, is_column);
}
示例5: af_dot
af_err af_dot( af_array *out,
const af_array lhs, const af_array rhs,
const af_mat_prop optLhs, const af_mat_prop optRhs)
{
CHECK_ARRAYS(lhs, rhs);
return CALL(out, lhs, rhs, optLhs, optRhs);
}
示例6: af_draw_vector_field_nd
af_err af_draw_vector_field_nd(const af_window wind,
const af_array points, const af_array directions,
const af_cell* const props)
{
CHECK_ARRAYS(points, directions);
return CALL(wind, points, directions, props);
}
示例7: af_sort_by_key
af_err af_sort_by_key(af_array *out_keys, af_array *out_values,
const af_array keys, const af_array values,
const unsigned dim, const bool isAscending)
{
CHECK_ARRAYS(keys, values);
return CALL(out_keys, out_values, keys, values, dim, isAscending);
}
示例8: af_draw_scatter_3d
af_err af_draw_scatter_3d(const af_window wind,
const af_array X, const af_array Y, const af_array Z,
const af_marker_type marker, const af_cell* const props)
{
CHECK_ARRAYS(X, Y, Z);
return CALL(wind, X, Y, Z, marker, props);
}
示例9: af_set_intersect
af_err af_set_intersect(af_array *out,
const af_array first, const af_array second,
const bool is_unique)
{
CHECK_ARRAYS(first, second);
return CALL(out, first, second, is_unique);
}
示例10: af_draw_vector_field_2d
af_err af_draw_vector_field_2d(
const af_window wind,
const af_array xPoints, const af_array yPoints,
const af_array xDirs, const af_array yDirs,
const af_cell* const props)
{
CHECK_ARRAYS(xPoints, yPoints, xDirs, yDirs);
return CALL(wind, xPoints, yPoints, xDirs, yDirs, props);
}
示例11: af_draw_plot3
af_err af_draw_plot3(const af_window wind, const af_array P, const af_cell* const props)
{
CHECK_ARRAYS(P);
return CALL(wind, P, props);
}
示例12: af_draw_image
af_err af_draw_image(const af_window wind, const af_array in, const af_cell* const props)
{
CHECK_ARRAYS(in);
return CALL(wind, in, props);
}
示例13: af_draw_plot
af_err af_draw_plot(const af_window wind, const af_array X, const af_array Y, const af_cell* const props)
{
CHECK_ARRAYS(X, Y);
return CALL(wind, X, Y, props);
}
示例14: af_draw_scatter_nd
af_err af_draw_scatter_nd(const af_window wind, const af_array in,
const af_marker_type marker, const af_cell* const props)
{
CHECK_ARRAYS(in);
return CALL(wind, in, marker, props);
}
示例15: af_cholesky
af_err af_cholesky(af_array *out, int *info, const af_array in, const bool is_upper)
{
CHECK_ARRAYS(in);
return CALL(out, info, in, is_upper);
}