代码搜索:modulo

找到约 768 项符合「modulo」的源代码

代码结果 768
www.eeworm.com/read/117859/14902079

m modulo.m

function y=modulo(x,N); %MODULO Congruence of a vector. % Y=MODULO(X,N) gives the congruence of each element of the % vector X modulo N. These values are strictly positive and % lower equal than N. %
www.eeworm.com/read/216263/15022221

m modulo.m

function y=modulo(x,N); %MODULO Congruence of a vector. % Y=MODULO(X,N) gives the congruence of each element of the % vector X modulo N. These values are strictly positive and % lower equal than N. %
www.eeworm.com/read/114598/15046549

c modulo.c

#include void main () { int remainder; int result; result = 10 / 3; remainder = 10 % 3; printf("10 Divided by 3 is %d Remainder %d\n", result, remainder);
www.eeworm.com/read/215709/15051862

m modulo.m

function y=modulo(x,N); %MODULO Congruence of a vector. % Y=MODULO(X,N) gives the congruence of each element of the % vector X modulo N. These values are strictly positive and % lower equal than N. %
www.eeworm.com/read/206867/15286770

c modulo.c

#include void main(void) { int remainder; int result; result = 10 / 3; remainder = 10 % 3; printf("10 Divided by 3 is %d Remainder %d\n", result, remainder); }
www.eeworm.com/read/11180/210811

c modulo.c

#include void main () { int remainder; int result; result = 10 / 3; remainder = 10 % 3; printf("10 Divided by 3 is %d Remainder %d\n", result, remainder);
www.eeworm.com/read/199846/5075198

java modulo.java

/* * This file is part of JGAP. * * JGAP offers a dual license model containing the LGPL as well as the MPL. * * For licencing information please see the file license.txt included with JGAP
www.eeworm.com/read/197004/5098568

java modulo.java

/* * This file is part of JGAP. * * JGAP offers a dual license model containing the LGPL as well as the MPL. * * For licencing information please see the file license.txt included with JGAP
www.eeworm.com/read/170938/5402507

m modulo.m

function [m] = modulo(n,N); m = rem(rem(n-1,N)+N,N)+1; % Written by Maureen Clerc and Jerome Kalifa, 1997 % clerc@cmapx.polytechnique.fr, kalifa@cmapx.polytechnique.fr % % Par
www.eeworm.com/read/347830/3162714

java modulo.java

/* * This file is part of JGAP. * * JGAP offers a dual license model containing the LGPL as well as the MPL. * * For licencing information please see the file license.txt included with JGAP