代码搜索:Convert
找到约 10,000 项符合「Convert」的源代码
代码结果 10,000
www.eeworm.com/read/493294/6399965
m classc.m
%CLASSC Convert mapping to classifier
%
% W = CLASSC(W)
% W = W*CLASSC
%
% INPUT
% W Any mapping or dataset
%
% OUTPUT
% W Classifier mapping or normalized dataset: outputs/features sum to 1
%
www.eeworm.com/read/492403/6422403
m graythresh.m
function level = graythresh(I)
%GRAYTHRESH Compute global image threshold using Otsu's method.
% LEVEL = GRAYTHRESH(I) computes a global threshold (LEVEL) that can be
% used to convert an inten
www.eeworm.com/read/479129/6699540
m ecef2tangent.m
function Ce2t = ecef2tangent(latitude, longitude)
% This function will generate the rotation matrix to
% convert a vector in ECEF coordinates to local tangent
% plane coordinates at a given latitude
www.eeworm.com/read/479129/6699569
m ecef2tangent.m
function Ce2t = ecef2tangent(latitude, longitude)
% This function will generate the rotation matrix to
% convert a vector in ECEF coordinates to local tangent
% plane coordinates at a given latitude
www.eeworm.com/read/477110/6747653
m oa2tr.m
%OA2TR Convert O/A vectors to homogeneous transformation
%
% TR = OA2TR(O, A)
%
% Returns a homogeneous tranformation for the specified orientation and
% approach vectors. The rotation submatrix is
www.eeworm.com/read/410642/11273936
cpp quotex.cpp
/* quotex.cpp
This example is both a SOAP service and a client application.
As a CGI program, it will serve currency-converted stock quote requests.
As a client, it will return the currency-convert
www.eeworm.com/read/405213/11469167
m int2strpiotrdollar.m
% Convert integer to string of given length; improved version of int2str.
%
% Pads string with zeros on the left. If input n is an array, output is a cell array of
% strings of the same dimensio
www.eeworm.com/read/400577/11572654
m classc.m
%CLASSC Convert mapping to classifier
%
% W = CLASSC(W)
% W = W*CLASSC
%
% INPUT
% W Any mapping or dataset
%
% OUTPUT
% W Classifier mapping or normalized dataset: outputs/features sum to 1
%
www.eeworm.com/read/157044/11743440
m vtxsep.m
function [sep,parta,partb] = vtxsep(A,a,b)
% VTXSEP : Convert an edge separator (or node partition) to a vertex separator.
%
% sep = vtxsep(A,a,b):
% A is a symmetric 0-1 matrix representing an undire
www.eeworm.com/read/259580/11779762
cpp threetolong.cpp
// convert characters 0, 1 and 2 of a string into a long
#include
#include
using namespace std;
long threeToLong(string s)
{// Assume s.length() >= 3.
// leftmos