代码搜索:factor
找到约 6,651 项符合「factor」的源代码
代码结果 6,651
www.eeworm.com/read/485607/6554891
cpp cityview.cpp
#include
#include
#include "cityview.h"
CityView::CityView(QWidget *parent)
: QGraphicsView(parent)
{
setDragMode(ScrollHandDrag);
}
void CityView::wheelEvent(QWheelEvent *e
www.eeworm.com/read/485392/6561119
m tfrrmsc.m
function [tfr,rtfr,hat] = tfrrmsc(x,t,N,f0T,trace,K);
%TFRRMSC Reassigned Morlet Scalogram time-frequency distribution.
% [TFR,RTFR,HAT] = TFRRMSC(X,T,N,F0T,TRACE)
% computes the Morlet scalogram and
www.eeworm.com/read/481894/6632122
m channel_simulator.m
function [ r ] = channel_simulator(I,Q,OSR)
% CHANNEL_SIMULATOR:
% This function is intended as an skeleton for channel
% simulator implementations, and is not to be considderd
%
www.eeworm.com/read/480200/6668054
m rescale.m
function npd = rescale(npd,factor)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% rescale(P, factor) -- Rescales the KDE "P" proportionally by
%
www.eeworm.com/read/480276/6668904
cpp calculator1.cpp
#include "stdafx.h"
#include
#include
#include
char token;
int expr(void);
int term(void);
int factor(void);
void error(void)
{
fprintf(stderr,"Error|n");
www.eeworm.com/read/480276/6668925
cpp calculator.cpp
/*
->{}
->+|-
->{}
->*
->()|Number
从stdin输入一文本行;
输出"Error"或计算结果。
*/
//#include "stdafx.h"
www.eeworm.com/read/479088/6699308
m normalize.m
function [y, factor] = normalize(x)
%
% Normalize to make the sum of magnitude in a burst
% to be one in spatial domain.
%
[m n] = size(x);
leng=length(x);
if m ~= leng
temp=m;
www.eeworm.com/read/478650/6712516
m ex0309.m
%多项式符号表达式的化简
f=sym('x^3-6*x^2+11*x-6') %多项式形式
g= sym('(x-1)*(x-2)*(x-3)') %因式形式
h= sym(' x*(x*(x-6)+11)-6') %嵌套形式
pretty(f)
collect(g)
f1=sym('x^3+2*x^2*y+4*x*y+6')
collect(f1,'y')
www.eeworm.com/read/478208/6721953
h int.h
/************************************************************************
* *
* Copyright (C) SEIKO EPSON CORP. 1999 *
* *
* File name: int.h *
* This is interrupt
www.eeworm.com/read/477671/6730637
cpp sieve.cpp
//: C04:Sieve.cpp
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc.
// Available at www.BruceEckel.com.
//{L} ../TestSuite/Test
#include