代码搜索:intersection
找到约 1,060 项符合「intersection」的源代码
代码结果 1,060
www.eeworm.com/read/217557/14958483
m isfeasible.m
function result = isfeasible(a,b)
% Determine whether or not the intersection of two linear constraint objects
% exists.
%
% Syntax:
% "C = isfeasible(a,b)"
%
% Description:
% "isfeasibl
www.eeworm.com/read/217557/14958527
m and.m
function c = and(a,b)
% Find the intersection of two linear constraint objects. Remove all
% redundant constraints
%
% Syntax:
% "C = and(a,b)"
%
% "C = a & b"
%
% Description:
% "a
www.eeworm.com/read/217557/14958681
m and.m
function a = and(a,b)
% Compute the intersection between two regions.
%
% Syntax:
% "s3 = and(s1,s2)" or "s3 = s1 & s2"
%
% Description:
% Given two regions "s1" and "s2", the function r
www.eeworm.com/read/217557/14958789
m clk_map.m
function mapping = clk_map(X0,v,INV)
% Compute the `mapping set` from the given initial polytope under `clock`
% dynamics in the given location invariant.
%
% Syntax:
% "mapping = clk_map(X0
www.eeworm.com/read/217557/14958813
m fs_nonlin_map.m
function [MAPPING,null_event,time_limit] = ...
fs_nonlin_map(sys_eq,ode_param,X0,INV,Pcon,T,max_time)
% Compute the `mapping set` from an initial continuous set to the boundary
% of the g
www.eeworm.com/read/171141/9769152
m listopt.m
function f=listopt(x,y,z)
%form f=listopt(x,y,z)
%the z:
%union——交集
%Intersection——并集
%Complement——差集
switch z
case 'union'
k=length(x)+1;b=x;
for i=1:length(y)
www.eeworm.com/read/270032/11050406
c sphere.c
#include "Sphere.h"
#include "solver.h"
/************************************************************************
* *
* This method computes the intersection between a ray and the sphere. *
*
www.eeworm.com/read/270032/11050431
c polyhedron.c
#include "Polyhedron.h"
/************************************************************************
* *
* Class destructor *
* *
**************************************************
www.eeworm.com/read/270032/11050652
c polyintr.c
#include "GraphicsGems.h"
#undef ON
/* Comparison macros */
#define LEFT -1 /* value to left of (less than) another */
#define ON 0 /* two values equal */
#define RIGHT 1 /