代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/391510/8399859
sln exercise6.sln
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Exercise6", "Exercise6\Exercise6.vbproj", "{69DD6BED-4B97-4B33
www.eeworm.com/read/391510/8399860
suo exercise6.suo
www.eeworm.com/read/192082/8408139
m exercise8a.m
%% Specifications
minspec=70;
maxspec=200;
%% Find
found= data(:)>minspec & data(:)
www.eeworm.com/read/192082/8408143
m exercise9.m
%% a)
% plot(data(1:100:end,1));
% ylim([1 255]);
%% b)
%% Down sample rate
downsample=100;
%% Downsampled max/min
maxdata=zeros(1,size(data,1)/downsample);
mindata=zeros(1,size(data,1)/do
www.eeworm.com/read/192082/8408145
m exercise6.m
%% Filename and Format string
% This code loads in the contents of the data file with textscan a block at a
% time and converts the cellarray from textscan into a double array
filename='waferdata
www.eeworm.com/read/192082/8408147
m exercise6a.m
%%
a=1; % Double by default
b=single(1);
c=uint32(1);
d=int32(1);
e=uint16(1);
f=int16(1);
g=uint8(1);
h=int8(1);
%%
i=sparse(2e9,1);
www.eeworm.com/read/192082/8408148
m exercise7.m
%% Parameters
m=1000;
x=randn(m,1);
%% Fully Vectorized
y=2*x;
%% De-vectorized to scalar operations (down columns)
y=randn(m,1);
for k=1:length(x)
y(k)=2*x(k);
end
%% De-vecto
www.eeworm.com/read/192082/8408149
m exercise5.m
%% Filename and Format string
% This code loads in the contents of the data file with textscan a block at a
% time and converts the cellarray from textscan into a double array
filename='waferdata