?? divider.m
字號:
function [N,M]=divider(N1);%DIVIDER Find dividers of an integer. % [N,M]=DIVIDER(N1) find two integers N and M such that M*N=N1 and% M and N as close as possible from sqrt(N1).%% Example :% N1=258; [N,M]=divider(N1)% F. Auger - November 1995.% Copyright (c) 1996 by CNRS (France).%% ------------------- CONFIDENTIAL PROGRAM -------------------- % This program can not be used without the authorization of its% author(s). For any comment or bug report, please send e-mail to % f.auger@ieee.org N=floor(sqrt(N1));TFTBcontinue=1.0;while TFTBcontinue, Nold=N; M=ceil(N1/N); N=floor(N1/M); TFTBcontinue=(N~=Nold);end;
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -