代码搜索:10 是什么?
找到约 10,000 项符合「10 是什么?」的源代码
代码结果 10,000
www.eeworm.com/read/284304/8947372
txt 08-10.txt
>> t = 0:pi/50:10*pi;
>> plot3(sin(t),cos(t),t)
>> grid on
>> axis square
www.eeworm.com/read/284304/8947415
txt 06-10.txt
fid = fopen('fft.m','r');
s = '';
while ~feof(fid)
line = fgetl(fid);
if isempty(line), break, end
s = strvcat(s,line);
end
disp(s)
www.eeworm.com/read/284304/8947687
txt 02-10.txt
>> x=int8(100);
>> y=int8(90);
>> z=x+y
>> x-3*y
>> x-y-y-y
www.eeworm.com/read/284304/8947781
txt 10-01.txt
function pushbutton1_Callback(hObject, eventdata, handles)
display Goodbye
delete(handles.figure1);
www.eeworm.com/read/284304/8947783
txt 10-02.txt
function togglebutton1_Callback(hObject, eventdata, handles)
button_state = get(hObject,'Value');
if button_state == get(hObject,'Max')
% 当按下按钮时执行的操作
...
elseif button_state == get(hObject
www.eeworm.com/read/284304/8947847
txt 04-10.txt
>> A=[1 2 3;14 5 6;7 8 9]
>> y=[23;60;77]
>> x=inv(A)*y
www.eeworm.com/read/284304/8947899
txt 09-10.txt
>> t=0:pi/20:2*pi;
>> x=sin(t);
>> plot(t,x);
>> title('Value of the sine from 0 to 2\pi');
>> xlabel('t = 0 - 2\pi');
>> ylabel('sin(t)');
>> text(pi/4,sin(pi/4),'\rightarrow sin(t)=0.707');
>
www.eeworm.com/read/284304/8947988