代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/487877/6501372
c sba.c
/* ////////////////////////////////////////////////////////////////////////////////
//
// Matlab MEX file for sba's simple drivers
// Copyright (C) 2007-2008 Manolis Lourakis (lourakis at ics forth
www.eeworm.com/read/487877/6501379
txt readme.txt
**************************************************************
Matlab MEX interface to sba's simple drivers
Manolis Lourakis, November 2007
**********************
www.eeworm.com/read/486201/6538110
txt readme_ncutimage.txt
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Normalized Cut Image Segmentation Code %
% %
% Timothee Cour (UPENN), Stella Yu
www.eeworm.com/read/486205/6538139
m 7-17.m
%例程7-17 双极性归零码
%双极性归零码的MATLAB程序实现如下:
function y=drz(x) %x为二进制序列,y为编码输出
grid=100;
t=0:1/grid:length(x); %时间序列
for i=1:length(x)
www.eeworm.com/read/485928/6550576
m gausselimination.m
clear; augm=input('Please input the augmented matrix:'); % 输入增广矩阵,记为augm
[m,l]=size(augm); % 增广矩阵的行数为m,列数为n
for i=1:m-1
if augm(i,i)==0 % 如果第i行i列位置的元素为零,则要将此行与下面
k=i+1;
www.eeworm.com/read/485392/6561202
m 7-17.m
%例程7-17 双极性归零码
%双极性归零码的MATLAB程序实现如下:
function y=drz(x) %x为二进制序列,y为编码输出
grid=100;
t=0:1/grid:length(x); %时间序列
for i=1:length(x)
www.eeworm.com/read/485144/6566119
m glcm_features1.m
function [out] = GLCM_Features1(glcmin,pairs)
%
% GLCM_Features1 helps to calculate the features from the different GLCMs
% that are input to the function. The GLCMs are stored in a i x j x n
% m
www.eeworm.com/read/484061/6590027
cpp directsolve.cpp
#include // for exception handling
#include "mex.h"
#include "linsys.h"
void mexFunction(int nlhs, mxArray *plhs[],
int nrhs, const mxArray *prhs[])
{
// Get size of ma
www.eeworm.com/read/484065/6590082
cs program.cs
using System;
using System.Collections.Generic;
using System.Text;
// MathWorks assemblies that ship with Builder for .NET
// and should be registered in Global Assembly Cache
using MathWorks.M