-
是一本介紹java基礎(chǔ)應(yīng)用的好書
Java For Artists targets both the undergraduate computer science or information technology student and the practicing programmer. It is both an introductory-level textbook and trade book.
As a textbook it employs learning objectives, skill-building exercises, suggested projects, and self-test questions to reinforce the learning experience. The projects offered range from the easy to the extremely challenging. It covers all the topics you’d expect to find in an introductory Java programming textbook and then some.
As a trade book it goes purposefully deeper into topics cut short or avoided completely in most introductory textbooks. Its coverage of advanced GUI programming techniques, network programming and object-oriented theory will enable you to take your skills to a higher level.
標(biāo)簽:
undergraduate
information
computer
Artists
上傳時間:
2016-09-28
上傳用戶:qiaoyue
-
1.把"Web"文件夾內(nèi)的文件拷貝到某個文件夾
2.在IIS中新建站點,指向該文件夾,如果新建虛擬路徑,會導(dǎo)致一些圖片的不正常顯示.
3."Database"文件夾內(nèi)有數(shù)據(jù)庫文件hyb2bTest_Data.MDF,在Sql Server企業(yè)管理器中選擇"附加數(shù)據(jù)庫"
4.需要修改根目錄web.config文件
<add key="DBServer" value="."/>,改成當(dāng)前數(shù)據(jù)庫地址
<add key="DBUser" value="sa"/>,改成當(dāng)前數(shù)據(jù)庫用戶名
<add key="DBPwd" value="sa"/>,改成當(dāng)前數(shù)據(jù)庫密碼
<add key="DBName" value="hyb2btest"/>,改成當(dāng)前數(shù)據(jù)庫名稱
<add key="SQLConnString" value="server=. database=hyb2btest user id=sa pwd=sa Min Pool Size=10"/>,分別也換成當(dāng)前數(shù)據(jù)庫的地址,用戶名、密碼以及數(shù)據(jù)庫名稱。
5.后臺登錄地址:
當(dāng)前路徑+manage/index.aspx
帳戶:admin
密碼:admin
環(huán)境要求:
Windows2000 / Windows2003 + IIS5 + .NET Framework 1.1 + MS SQL Server 2000 或各更高版本
演示地址:www.hyb2b.cn
電話:13061363607
MSN :huayousoft@hotmail.com
標(biāo)簽:
Web
IIS
中新
站點
上傳時間:
2014-01-27
上傳用戶:zhliu007
-
引入PEG(Progressive-edge-growth)算法來構(gòu)造適合線性時間編碼的LDPC校驗矩陣,譯碼時采用簡化最小和Min-Sum譯碼算法實現(xiàn)簡化譯碼.仿真結(jié)果表明,該方法能夠構(gòu)造適合LDPC碼的線性時間編碼的下三角校驗矩陣日,并且用此方法構(gòu)造的LDPC碼性能非常接近原來PEG算法構(gòu)造的LDPC碼.同時通過采用最小和Min-Sum算法降低譯碼復(fù)雜度.
標(biāo)簽:
Progressive-edge-growth
LDPC
PEG
算法
上傳時間:
2013-12-27
上傳用戶:qlpqlq
-
We propose a technique that allows a person to design a new photograph
with substantially less effort. This paper presents a method that generates a composite image when a user types
in nouns, such as “boat” and “sand.” The artist can optionally design an intended image by specifying other
constraints. Our algorithm formulates the constraints as queries to search an automatically annotated image
database. The desired photograph, not a collage, is then synthesized using graph-cut optimization, optionally
allowing for further user interaction to edit or choose among alternative generated photos. An implementation of
our approach, shown in the associated video, demonstrates our contributions of (1) a method for creating specific
images with minimal human effort, and (2) a combined algorithm for automatically building an image library with
semantic annotations from any photo collection.
標(biāo)簽:
substantially
photograph
technique
propose
上傳時間:
2016-11-24
上傳用戶:三人用菜
-
Imperfect C++ Practical Solutions for Real-Life Programming
C++, although a marvelous language, isn t perfect. Matthew Wilson has been working with it for over a decade, and during that time he has found inherent limitations that require skillful workarounds. In this book, he doesn t just tell you what s wrong with C++, but offers practical techniques and tools for writing code that s more robust, flexible, efficient, and maintainable. He shows you how to tame C++ s complexity, cut through its vast array of paradigms, take back control over your code--and get far better results.
標(biāo)簽:
Programming
Imperfect
Practical
Solutions
上傳時間:
2014-03-02
上傳用戶:songrui
-
Lotus Notes開發(fā)用的在線DHTML編輯器,基于Active X control
1. This rich text editor is based on the editor used in an older sandbox posting I found. The majority of this code was NOT written by me. Credit goes to someone at Lotus (I think) for the original code. I only extended the base
code to add more features, such as cut/copy/paste and adding tables.
2. This editor is based on an Active X control, so it will only work in Internet Explorer. I tested this in IE 5.5, but I think it should would in IE 5.x The Active X control is marked "safe for scripting" and should not trigger a warning from your browser about unsafe content.
標(biāo)簽:
editor
control
Active
Lotus
上傳時間:
2016-11-27
上傳用戶:kr770906
-
function [U,center,result,w,obj_fcn]= fenlei(data)
[data_n,in_n] = size(data)
m= 2 % Exponent for U
max_iter = 100 % Max. iteration
min_impro =1e-5 % Min. improvement
c=3
[center, U, obj_fcn] = fcm(data, c)
for i=1:max_iter
if F(U)>0.98
break
else
w_new=eye(in_n,in_n)
center1=sum(center)/c
a=center1(1)./center1
deta=center-center1(ones(c,1),:)
w=sqrt(sum(deta.^2)).*a
for j=1:in_n
w_new(j,j)=w(j)
end
data1=data*w_new
[center, U, obj_fcn] = fcm(data1, c)
center=center./w(ones(c,1),:)
obj_fcn=obj_fcn/sum(w.^2)
end
end
display(i)
result=zeros(1,data_n) U_=max(U)
for i=1:data_n
for j=1:c
if U(j,i)==U_(i)
result(i)=j continue
end
end
end
標(biāo)簽:
data
function
Exponent
obj_fcn
上傳時間:
2013-12-18
上傳用戶:ynzfm
-
電子鬧鐘
clk: 標(biāo)準(zhǔn)時鐘信號,本例中,其頻率為4Hz;
clk_1k: 產(chǎn)生鬧鈴音、報時音的時鐘信號,本例中其頻率為1024Hz;
mode: 功能控制信號; 為0:計時功能;
為1:鬧鐘功能;
為2:手動校時功能;
turn: 接按鍵,在手動校時功能時,選擇是調(diào)整小時,還是分鐘;
若長時間按住該鍵,還可使秒信號清零,用于精確調(diào)時;
change: 接按鍵,手動調(diào)整時,每按一次,計數(shù)器加1;
如果長按,則連續(xù)快速加1,用于快速調(diào)時和定時;
hour,min,sec:此三信號分別輸出并顯示時、分、秒信號,
皆采用BCD 碼計數(shù),分別驅(qū)動6 個數(shù)碼管顯示時間;
alert: 輸出到揚聲器的信號,用于產(chǎn)生鬧鈴音和報時音;
鬧鈴音為持續(xù)20 秒的急促的“嘀嘀嘀”音,若按住“change”鍵,
則可屏蔽該音;整點報時音為“嘀嘀嘀嘀—嘟”四短一長音;
LD_alert: 接發(fā)光二極管,指示是否設(shè)置了鬧鐘功能;
LD_hour: 接發(fā)光二極管,指示當(dāng)前調(diào)整的是小時信號;
LD_min: 接發(fā)光二極管,指示當(dāng)前調(diào)整的是分鐘信號
標(biāo)簽:
clk
電子鬧鐘
標(biāo)準(zhǔn)
時鐘信號
上傳時間:
2017-01-02
上傳用戶:頂?shù)弥?/p>
-
SQL 合計函數(shù)
使用 SQL 合計函數(shù) 你可以確定數(shù)據(jù)組的各種統(tǒng)計。你可以把這些函數(shù)用于查詢和合計表達(dá)式,條件是在具備 SQL特性的 QueryDef對象中或在創(chuàng)建基于SQL查詢的 Recordset對象時。
Avg 函數(shù)
Count 函數(shù)
First, Last 函數(shù)
Min, Max 函數(shù)
StDev, StDevP 函數(shù)
Sum 函數(shù)
Var 和 VarP 函數(shù)
標(biāo)簽:
SQL
函數(shù)
數(shù)據(jù)
查詢
上傳時間:
2017-01-27
上傳用戶:1583060504
-
設(shè)計一個具有特定功能的數(shù)字電子鐘。準(zhǔn)確計時,以數(shù)字形式顯示h、min、s 的時間。小時的計時要求為二十四進(jìn)位,分和秒的計時要求為六十進(jìn)位。
該電子鐘上電或按鍵復(fù)位后能自動顯示系統(tǒng)提示00-00-00,進(jìn)入時鐘準(zhǔn)備狀態(tài);第一次按電子鐘功能鍵,電子鐘從0時0分0秒開始運行,進(jìn)入時鐘運行狀態(tài);再次按電子鐘功能鍵,則電子鐘進(jìn)入時鐘調(diào)整狀態(tài),此時可利用各調(diào)整鍵調(diào)整時間,調(diào)整結(jié)束后可按功能鍵再次進(jìn)入時鐘運行狀態(tài)。
標(biāo)簽:
數(shù)字電子鐘
計時
上傳時間:
2017-02-04
上傳用戶:1966640071