是一本介紹java基礎應用的好書 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.
標簽: undergraduate information computer Artists
上傳時間: 2016-09-28
上傳用戶:qiaoyue
1.把"Web"文件夾內的文件拷貝到某個文件夾 2.在IIS中新建站點,指向該文件夾,如果新建虛擬路徑,會導致一些圖片的不正常顯示. 3."Database"文件夾內有數據庫文件hyb2bTest_Data.MDF,在Sql Server企業管理器中選擇"附加數據庫" 4.需要修改根目錄web.config文件 <add key="DBServer" value="."/>,改成當前數據庫地址 <add key="DBUser" value="sa"/>,改成當前數據庫用戶名 <add key="DBPwd" value="sa"/>,改成當前數據庫密碼 <add key="DBName" value="hyb2btest"/>,改成當前數據庫名稱 <add key="SQLConnString" value="server=. database=hyb2btest user id=sa pwd=sa Min Pool Size=10"/>,分別也換成當前數據庫的地址,用戶名、密碼以及數據庫名稱。 5.后臺登錄地址: 當前路徑+manage/index.aspx 帳戶:admin 密碼:admin 環境要求: Windows2000 / Windows2003 + IIS5 + .NET Framework 1.1 + MS SQL Server 2000 或各更高版本 演示地址:www.hyb2b.cn 電話:13061363607 MSN :huayousoft@hotmail.com
上傳時間: 2014-01-27
上傳用戶:zhliu007
引入PEG(Progressive-edge-growth)算法來構造適合線性時間編碼的LDPC校驗矩陣,譯碼時采用簡化最小和Min-Sum譯碼算法實現簡化譯碼.仿真結果表明,該方法能夠構造適合LDPC碼的線性時間編碼的下三角校驗矩陣日,并且用此方法構造的LDPC碼性能非常接近原來PEG算法構造的LDPC碼.同時通過采用最小和Min-Sum算法降低譯碼復雜度.
標簽: 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.
標簽: 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.
標簽: Programming Imperfect Practical Solutions
上傳時間: 2014-03-02
上傳用戶:songrui
Lotus Notes開發用的在線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.
標簽: 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
標簽: data function Exponent obj_fcn
上傳時間: 2013-12-18
上傳用戶:ynzfm
電子鬧鐘 clk: 標準時鐘信號,本例中,其頻率為4Hz; clk_1k: 產生鬧鈴音、報時音的時鐘信號,本例中其頻率為1024Hz; mode: 功能控制信號; 為0:計時功能; 為1:鬧鐘功能; 為2:手動校時功能; turn: 接按鍵,在手動校時功能時,選擇是調整小時,還是分鐘; 若長時間按住該鍵,還可使秒信號清零,用于精確調時; change: 接按鍵,手動調整時,每按一次,計數器加1; 如果長按,則連續快速加1,用于快速調時和定時; hour,min,sec:此三信號分別輸出并顯示時、分、秒信號, 皆采用BCD 碼計數,分別驅動6 個數碼管顯示時間; alert: 輸出到揚聲器的信號,用于產生鬧鈴音和報時音; 鬧鈴音為持續20 秒的急促的“嘀嘀嘀”音,若按住“change”鍵, 則可屏蔽該音;整點報時音為“嘀嘀嘀嘀—嘟”四短一長音; LD_alert: 接發光二極管,指示是否設置了鬧鐘功能; LD_hour: 接發光二極管,指示當前調整的是小時信號; LD_min: 接發光二極管,指示當前調整的是分鐘信號
上傳時間: 2017-01-02
上傳用戶:頂得柱
SQL 合計函數 使用 SQL 合計函數 你可以確定數據組的各種統計。你可以把這些函數用于查詢和合計表達式,條件是在具備 SQL特性的 QueryDef對象中或在創建基于SQL查詢的 Recordset對象時。 Avg 函數 Count 函數 First, Last 函數 Min, Max 函數 StDev, StDevP 函數 Sum 函數 Var 和 VarP 函數
上傳時間: 2017-01-27
上傳用戶:1583060504
設計一個具有特定功能的數字電子鐘。準確計時,以數字形式顯示h、min、s 的時間。小時的計時要求為二十四進位,分和秒的計時要求為六十進位。 該電子鐘上電或按鍵復位后能自動顯示系統提示00-00-00,進入時鐘準備狀態;第一次按電子鐘功能鍵,電子鐘從0時0分0秒開始運行,進入時鐘運行狀態;再次按電子鐘功能鍵,則電子鐘進入時鐘調整狀態,此時可利用各調整鍵調整時間,調整結束后可按功能鍵再次進入時鐘運行狀態。
上傳時間: 2017-02-04
上傳用戶:1966640071