代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/409260/11338604
f90 sglui1.f90
module sgl_util
use sgl
implicit none
integer, save :: x=100
integer, save :: y=100
contains
subroutine display()
integer, parameter :: size = 20
call sglClearBuffer()
call sglC
www.eeworm.com/read/409260/11338605
f90 sglui2.f90
module sgl_util
use sgl
implicit none
integer, save :: x=0
integer, save :: y=0
contains
subroutine display()
integer, parameter :: size = 10
call sglClearBuffer()
call sglColor
www.eeworm.com/read/409260/11338819
f90 ex0913.f90
program ex0913
implicit none
integer, parameter :: fileid = 10
character(len=20) :: filename = "list.bin"
real hit
integer player
logical alive
integer error
inquire(file
www.eeworm.com/read/409260/11338852
f90 ex0910.f90
program ex0910
implicit none
integer, parameter :: fileid = 10
character(len=20) :: filename = "list.txt"
integer player
real hit
integer error
logical alive
inquire(fi
www.eeworm.com/read/409260/11339112
f90 ex0434.f90
program ex0434
implicit none
! 开始建立person这个类型
type :: person
character(len=30) :: name ! 人名
integer :: age ! 年龄
integer :: height ! 身高
integer :: weight
www.eeworm.com/read/401735/11551426
f90 lgstic4.f90
MODULE data_storage
! The data is stored in this module.
! This is equivalent to a COMMON area in old Fortran.
IMPLICIT NONE
INTEGER, PARAMETER, PRIVATE :: dp = SELECTED_REAL_KIND(12, 60)
RE
www.eeworm.com/read/347945/11624321
m bounds.m
function varargout = bounds(x,lower,upper,aux)
%BOUNDS Adds implicit bounds on variables.
%
% BOUNDS IS OBSOLETE: Use standard SET constraints
%
% BOUNDS(x,Lower,Upper) Adds bound constraints o
www.eeworm.com/read/347945/11625941
m bounds.m
function varargout = bounds(x,lower,upper,aux)
%BOUNDS Adds implicit bounds on variables.
%
% BOUNDS IS OBSOLETE: Use standard SET constraints
%
% BOUNDS(x,Lower,Upper) Adds bound constraints o
www.eeworm.com/read/347811/11635086
m nobias.m
function nb = nobias(ker)
%NOBIAS returns true if SVM kernel has no implicit bias
%
% Usage: nb = nobias(ker)
%
% Parameters: ker - kernel type
%
% Author: Steve Gunn (srg@ecs.soton.a
www.eeworm.com/read/258562/11854049
f90 ex0704.f90
program ex0704
implicit none
integer, parameter :: row = 2
integer, parameter :: col = 2
integer :: matrixA(row,col)
integer :: matrixB(row,col)
integer :: matrixC(row,col)
integer