代码搜索:try
找到约 10,000 项符合「try」的源代码
代码结果 10,000
www.eeworm.com/read/355101/10294580
m try_evalin.m
% evalin函数使用示例
% x1为函数空间内定义的变量
% x2为MATLAB基本工作空间中定义的变量
% 分别绘制自变量为x1、x2的正弦函数图形
% 输出变量有两个,分别是y1、y2
% 调用evalin函数,跨空间调用变量值
function [y1,y2]=try_evalin(x1) % 定义函数的输入、输出变量
x1=0:.1:pi; % x1是函数空间
www.eeworm.com/read/355101/10294617
m try_subf.m
% 任意输入两数,求两数分别为底和指数的幂和
% 创建两个子函数,分别求x^y和y^x
% 主函数运用分支语句,当输入数字为0时,警告报错
function z=try_subf(x,y) % 主函数try_subf
z1=subf1(x,y);
z2=subf2(x,y);
if (x==0)|(y==0) % 关系、逻辑运算判断,如果x、y有一为0,则报错
err
www.eeworm.com/read/355101/10294643
m try_nest.m
% 使用并列嵌套函数
function z=try_nest(x,y) % 主函数try_nest
z1=nest1(x,y);
z2=nest2(x,y);
function z1=nest1(x,y) % 嵌套子函数1,求以x为底,y为指数的幂
z1=x^y;
end
fun
www.eeworm.com/read/354492/10349345
cpp try_array.cpp
#include "Array.h"
template
void try_array( Array &iA )
{
cout
www.eeworm.com/read/354492/10350205
c try_array.c
#include "Array.h"
template
void try_array( Array &iA )
{
cout
www.eeworm.com/read/161095/10452169
m try2.m
function info = try2(A,pin);
% TRY2 : test SUPERLU with 2 outputs
%
% info = try2(A,pin);
% normally info is the residual norm;
% but info is at least 10^6 if U is not triangular
% or if the factors
www.eeworm.com/read/161095/10452182
m try4.m
function info = try4(A,pin);
% TRY4 : test SUPERLU with 4 outputs
%
% info = try4(A,pin);
% normally info is the residual norm;
% but info is at least 10^6 if the factors are not triangular,
% or the
www.eeworm.com/read/161095/10452211
m try3.m
function info = try3(A,pin);
% TRY3 : test SUPERLU with 3 outputs
%
% info = try3(A,pin);
% normally info is the residual norm;
% but info is at least 10^6 if the factors are not triangular,
% or the
www.eeworm.com/read/160631/10512732
cmd try2.cmd
/* Restrictions : The memory definitions MUST be preserved: VECTORS, XFER, SCRATCH, XFERHDR
and FIFO. FIFO is important for proper function of the HPI implemented fifo.
*