代码搜索:linear
找到约 10,000 项符合「linear」的源代码
代码结果 10,000
www.eeworm.com/read/491236/6437965
m linear_array.m
function [theta,patternr,patterng] = linear_array(Nr,dolr,theta0,winid,win,nbits);
% This function computes and returns the gain radiation pattern for a linear array
% It uses the FFT to computes th
www.eeworm.com/read/489524/6472581
m linear_array.m
function [theta,patternr,patterng] = linear_array(Nr,dolr,theta0,winid,win,nbits);
% This function computes and returns the gain radiation pattern for a linear array
% It uses the FFT to computes th
www.eeworm.com/read/481753/6637941
m linear_dyn.m
% linear_dyn.m
% returns an offset that can be added to data that increases linearly with
% time, based on cputime, first time it is called is start time
%
% equation is: offset = (cputime - tnot)
www.eeworm.com/read/409702/6656681
m linear_function.m
clear all, clc
% A=[1,2,3;2,14,4;3,4,5]; % A对称正定
% x=[2,3,4.5]'
% b=A*x;
A=[4,-1,1;-1,4.25,2.75;1,2.75,3.5];
x=[2,-1,-1]'
b=[6,-0.5,1.25]';
% 最速下降法------------------------%
x0=[1,-1,-1]';
r0
www.eeworm.com/read/480149/6677850
m exp_linear.m
%指数函数与线性函数的交点
function y=exp_linear(x,a,b)
y=exp(x)+a*x-b;
www.eeworm.com/read/476372/6758285
m linear_fft.m
% File: linear_fft.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wir
www.eeworm.com/read/476406/6760864
f90 linear.f90
program main
use IMSL
implicit none
real :: A(3,3) = (/ 1,3,2,&
1,2,1,&
2,1,3 /)
real :: B(3,1) = (/ 4,6,6 /)
real :: X(3,1)
call lin_sol_gen(A,B,X)
www.eeworm.com/read/410537/11278912
m linear_dyn.m
% linear_dyn.m
% returns an offset that can be added to data that increases linearly with
% time, based on cputime, first time it is called is start time
%
% equation is: offset = (cputime - tnot)
www.eeworm.com/read/409260/11338679
f90 linear.f90
program main
use IMSL
implicit none
real :: A(3,3) = (/ 1,3,2,&
1,2,1,&
2,1,3 /)
real :: B(3,1) = (/ 4,6,6 /)
real :: X(3,1)
call lin_sol_gen(A,B,X)
www.eeworm.com/read/409142/11345100
m exp_linear.m
%指数函数与线性函数的交点
function y=exp_linear(x,a,b)
y=exp(x)+a*x-b;