代码搜索:SCI模块
找到约 10,000 项符合「SCI模块」的源代码
代码结果 10,000
www.eeworm.com/read/459643/7269501
pjt sci.pjt
; Code Composer Project File, Version 2.0 (do not modify or remove this line)
[Project Settings]
ProjectName="sci"
ProjectDir="E:\dsp\example\sci\"
ProjectType=Executable
CPUFamily=TMS320C28XX
www.eeworm.com/read/459643/7269513
paf sci.paf
www.eeworm.com/read/459643/7269533
out sci.out
www.eeworm.com/read/459643/7269548
map sci.map
******************************************************************************
TMS320C2000 COFF Linker PC Version 3.07
*******************************************************
www.eeworm.com/read/459643/7269558
wks sci.wks
www.eeworm.com/read/458517/7295077
sci chemakzoddassl.sci
// This file is automatically generated by
// the IVPtestset file report.f
nindsol = 6;
indsol = [
1
2
3
4
5
www.eeworm.com/read/458517/7295081
sci polluddassl.sci
// This file is automatically generated by
// the IVPtestset file report.f
nindsol = 20;
indsol = [
1
2
3
4
5
www.eeworm.com/read/456209/7353744
sci strcmp.sci
function r = strcmp(a,b)
// strcmp - string comparison
//
// r = strcmp(a,b)
//
// Copyright (c) 2008 Gabriel Peyre
r = (a==b);
endfunction
www.eeworm.com/read/456209/7353752
sci isstr.sci
function a = isstr(h)
// isstr - is a string ?
//
// Copyright (c) 2008 Gabriel Peyre
a = type(h)==10;
endfunction
www.eeworm.com/read/456209/7353820
sci squeeze.sci
function A = squeeze(A)
// squeeze - remove singleton dimensions
//
// A = squeeze(A);
//
// Copyright (c) 2008 Gabriel Peyre
d = size(A);
d1 = [];
for i=1:length(d)
if d(i)~=1
d1($+1