代码搜索:solving

找到约 630 项符合「solving」的源代码

代码结果 630
www.eeworm.com/read/102885/15753835

sas7bdat problem_solving.sas7bdat

www.eeworm.com/read/162300/10316559

m mtov.m

%Matrix to Vector %Transform Matrix to Vector based on column,this function is used in genic %algrithm for solving ann's weight. function [v]=MtoV(w,b) if nargin < 2 w=w; else w=[w,b]
www.eeworm.com/read/417519/10986710

readme

There are two examples illustrating how to call the system solving functions in the library. To compile the examples, the library should be installed first. See doc/liblink for the approach to compil
www.eeworm.com/read/329487/12953107

c 10.c

#include main() { double a1,a2,b1,b2,c1,c2; double deta; double x,y; printf("input coefs:A1,B1,C1;A2,B2,C2\n"); scanf("%if%if%if%if%if%if",&a1,&b1,&c1,&a2,&b2,&c2); deta=a1*b2-a2*b1;
www.eeworm.com/read/221024/14762487

html http:^^www.cs.dartmouth.edu^courseguide^undergrad^cs_26.html

Date: Wed, 20 Nov 1996 22:13:43 GMT Server: NCSA/1.4.2 Content-type: text/html Last-modified: Tue, 03 Sep 1996 13:09:00 GMT Content-length: 940 Numerical Methods in Computation
www.eeworm.com/read/101163/15846322

html content.html

www.eeworm.com/read/275831/10794345

rb 10 - solving a system of linear equations.rb

2x + 10y + 8z = 54 7y + 4z = 30 5x + 5y + 5z = 35 #--- require 'matrix' require 'rational' coefficients = [[2, 10, 8], [0, 7, 4], [5, 5, 5]].collect! do |row| row.collect! { |x| Rational(x) } end c