TOP
英國出版界指標大獎肯定!A.F. Steadman 獲年度作家,《史坎德》系列帶你踏上熱血奇幻旅程
搜尋結果 /

Practical API Design

52
1 / 2
出版日:2004/01/01 作者:PRIESTLEY  出版社:MC  裝訂:平裝
定價:910 元
無庫存
出版日:2019/03/15 作者:Katherine Schofield; Deborah Schwartz  出版社:Slack Inc  裝訂:平裝
Orthotic Design and Fabrication for the Upper Extremity: A Practical Guide by Drs. Katherine Schofield and Deborah Schwartz is a unique guide that illustrates orthotic design and fabrication in a clea
定價:2798 元
無庫存
系統設計面試制勝關鍵:45分鐘內脫穎而出的架構實力與解題邏輯
79 折
出版日:2026/05/18 作者:Zhiyong Tan  出版社:碁峰資訊  裝訂:平裝
自信迎戰下一場面試! 系統設計面試是軟體工程招聘過程中最艱巨的挑戰之一,連經驗豐富的軟體工程師都望而卻步。 要在短短數十分鐘內設計出一個以往要數年才能完成的複雜系統,關鍵不在於尋找標準答案,而在於展現你的架構實力與解題邏輯。 這本實用的書為您提供棘手的系統設計面試問題的最佳解決方案,以及獲得您想要的工作和薪水所需的見解、技能和實踐。 來自讀者與業界人士的推薦 「本書集結豐富的洞見、策略與實用技巧;引導你掌握系統設計面試各個環節的完整學習路線圖,提供在競爭環境中脫穎而出的信心與工具。」 -Anthony Asta,LinkedIn工程總監、前 Google工程經理 「透過現實世界的案例研究,助你精通設計決策背後的取捨考量,從容應對高難度面試並找到職涯成長的新機會。」 -Michael D. Elder,PayPal資深工程師兼資深總監 「身為面試過數百人的工程經理,真正拉開工程師差距的不是語法,而是系統設計的判斷力。本書以紮實案例拆解大型系統的設計取捨,從面試到日常實戰,都值得反覆閱讀。」 -SA,Amazon讀者真實評價 「深入剖析系統設計面試,以淺顯易懂的方式呈現各個環節,無論新手或資深工程師都能受益。對細節的精準掌握,讓這本書成為必讀經典。」 -Mohammad Shafkat Amin,Meta 「全面涵蓋最關鍵主題,搭配實用技巧與建議。提供你在下次系統設計面試中勝出的完整工具。」 -Rajesh Kumar,Google 「書中的實戰建議與真實案例,將助你精通系統設計藝術,在下次面試中脫穎而出。」 -Kevin Goh,PayPal 不要被系統設計面試的複雜性、開放性所嚇倒! 本書涵蓋了有關系統設計的所有知識,從功能劃分的框架到不同的API模式。 您將學習如何快速評估問題,確定有利的解決方案,然後向面試官清晰地闡述想法。 結構化的面試準備方法、方便的速記技巧和自我評估範本,可幫助您準備和評估自己的表現,從而提昇未來的表現。 在此過程中,您還將學到如何向面試官提出適當問題,以及如何做好面試筆記的方法。 內容包含: * 深入探討擴展、交易、記錄等關鍵概念 * 系統設計的核心概念實戰練習 * 展現設計取捨的工程成熟度 * 面試策略與向面試官提問的技巧 讀完本書,你不只獲得面試成功的技能,更能學會真正優秀的系統設計實務。 本書適合希望提升職涯發展的軟體工程師、軟體架
優惠價: 79 592
庫存:6
深入Linux Kernel程式設計:kernel內部原理、模組開發與同步機制
滿額折
出版日:2026/04/24 作者:Kaiwan N. Billimoria  出版社:碁峰資訊  裝訂:平裝
專為Linux kernel新手程式設計師與希望深化核心開發能力的工程師所撰寫!是一本兼具系統性與實務導向的程式設計指南。內容循序漸進,從基礎概念出發,引領讀者深入Linux kernel的設計思維與運作核心。 本書以6.1長期支援(LTS,Long-Term Support)的Linux kernel為基礎,該版本具備高度穩定性,並廣泛應用於實務環境中。此外,Civil Infrastructure Project已承諾將6.1超長期支援(SLTS,Super LTS)kernel維護至2033年8月,使本書在未來多年內仍具高度實務與參考價值。 你將從學習如何由原始碼編譯(build)kernel開始,逐步學習如何運用kernel強大的可載入核心模組(LKM,Loadable Kernel Module)架構,撰寫並管理你的第一個kernel模組。在奠定模組開發基礎後,將進一步帶你深入核心內部關鍵主題,包括Linux kernel架構、記憶體管理與CPU(task)排程等重要機制。 最後,本書將聚焦於kernel開發中極為關鍵的――平行性(concurrency),深入說明各種同步與上鎖(locking)技術的設計理念與實務應用,包含mutex、spinlock、atomic/refcount運算子、rw-spinlock,以及per-CPU與RCU等lock-free技術,協助你撰寫更安全、穩定且可擴充的kernel程式碼。 閱讀完本書後,你將能以更宏觀且結構化的視角理解Linux kernel與kernel模組的運作方式,並具備實際應用於真實專案與產品中的能力。內容包括: ■ 從原始碼設定並編譯6.1 LTS Linux kernel ■ 為6.x kernel設計高品質、可維護的模組化程式碼(LKM架構) ■ 探索現代Linux kernel架構設計 ■ 掌握kernel內記憶體管理的關鍵細節 ■ 理解並使用各種動態kernel記憶體alloc/dealloc API ■ 深入解析kernel內CPU排程機制,包含cgroups v2 ■ 洞悉kernel平行性(concurrency)問題與常見陷阱 ■ 正確運用關鍵的kernel同步原語(synchronization primitives)
優惠價: 9 882
庫存:6
國際展演脈絡的對話:創作與設計交流
95 折
出版日:2026/01/25 作者:劉冠辰  出版社:翰蘆圖書  裝訂:平裝
本書以「國際展演脈絡的對話一創作與設計交流」為核心,參與多國展覽、競賽與策展的實踐經驗,選介二十五件作品,進一步探討設計如何在不同文化語境中被理解、被回應與再調整。透過展演回饋、跨文化對話與教學轉譯,建構一套以展演為方法、以交流為核心的創作與學習脈絡。This book is centered on ""Dialogues in International Exhibition Contexts: Creative and Design Exchange."" Drawing on practical experience from participating in exhibitions, competitions, and curatorial projects across multiple countries, it presents a selection of twenty-five works to examine how design is interpreted, responded to, and recalibrated within different cultural contexts. Through exhibition feedback, cross-cultural dialogue, and pedagogical translation, the book constructs a framework for creation and learning that takes exhibition as a method and exchange as its core.
優惠價: 95 475
庫存:5
使用FastAPI建構生成式AI服務:開發理解豐富脈絡的生成式AI應用
滿額折
出版日:2025/12/25 作者:Alireza Parandeh  出版社:美商歐萊禮  裝訂:平裝
「軟體開發者與資料科學家必備的實戰資源!Ali以深厚技術與清晰教學,手把手帶你用FastAPI打造可上線的生成式AI服務,從實作中保持領先地位。」 ―Joe Rowe,Applied Data Science Partners技術保證與合規主管 「這是一本極實用的生成式AI入門書籍,詳盡說明如何打造真正能運作的服務,非常適合當成邁入 AI 開發領域的首選書籍。」 ―Julian Brendel,Vitol資深Python開發者 準備好要用生成式AI打造真正可上線的應用程式了嗎? 本書以實作為核心,教你如何運用FastAPI網頁框架來設計與部署AI服務。你將學到如何整合模型,處理文字、圖像、音訊與影片,並讓服務與資料庫、檔案系統、網站與API自然串接。無論你是網頁開發者、資料科學家,還是DevOps工程師,本書提供的範例、工具與策略,都能幫你打造高效、可隨需擴展、能即時提供服務的AI應用程式。 作者Alireza Parandeh透過清楚的解說與實際範例來介紹身分驗證、並行、快取,同時結合向量庫的檢索增強生成(RAG)技術。你將學會如何檢驗AI輸出品質、提升效能,以及保護微服務的最佳做法,並利用Docker來部署容器,在雲端自信啟動你的AI應用程式。 • 建立可與資料庫、檔案系統、網站及API互動的AI服務。 • 管理並行的AI工作與長時間運行的任務。 • 透過WebSockets與伺服器傳送事件(SSE),以串流形式傳送AI生成的結果。 • 使用身分驗證、內容過濾、限流與速率限制機制來保護服務。 • 透過快取、批次處理與微調技術強化AI效能。 Alireza Parandeh 是獲得英國工程委員會(UK Engineering Council)認證的特許工程師(Chartered Engineer),也是微軟與Google認證的開發者、資料工程師與資料科學家。 #FastAPI #生成式AI #AI服務/應用開發 #RAG #Docker部署AI #Context-rich AI
優惠價: 9 792
庫存:4
Systems Analysis and Design, Cengage International Edition
滿額折
出版日:2025/06/13 作者:Scott Tilley (Florida Institute of Technology)  出版社:Cengage Learning  裝訂:平裝
Discover a practical, streamlined approach to systems development that focuses on the latest developments with Tilley's Systems Analysis and Design, Cengage International Edition, 13th, and MindTap digital resources. Real examples clearly demonstrate both traditional and emerging approaches to systems analysis and design, including object-oriented and agile methods. You also study emerging technologies such as artificial intelligence (AI), machine learning (ML), cloud computing and cybersecurity. Meaningful projects, insightful assignments and both online and printed exercises emphasize the critical thinking and IT skills that are most important in today's dynamic, business-related environment.
定價:1680 元
無庫存
LOGO設計的不敗法則:打造極簡、有力、經典LOGO的實用指南
滿額折
出版日:2024/11/30 作者:喬治.博庫亞  出版社:商周文化  裝訂:平裝
★2022年美國平面設計大獎圖書設計類獎(American Graphic Design Award)★本書分享了從接案定價、草稿構思到完稿的必備知識,協助讀者規畫出面面俱到的作品。我非常同意書中提到,設計LOGO不僅是描繪造型,更需要考量視覺錯視的影響並進一步雕琢細節,方能創造出讓自己、客戶和觀眾都滿意的經典之作。──曾國榕(字體設計師)Logo設計師就像一名天文學家,在想像力的星海中找尋簡單、美麗的小小形狀,它雖然簡單,卻能傳達比複雜設計更強烈的訊息…… Logo設計師是企業打造品牌視覺形象的關鍵人物。在本書中,曾與迪士尼、New Balance、NFL、Sonic等企業合作的知名Logo設計師喬治.博庫亞,以大量範例,詳盡解析Logo設計的基本觀念、Logo類型、視覺要點、設計流程及最終呈現等五大環節。 ★設計心法.運用數學方法,再加上個人的即興發揮,可以為混亂帶來兼具理性、人性和美感的秩序。.圖案型Logo遠比其他類型的Logo更具傳播力、更容易深植人心。.光影效果:為避免Logo形狀過於平淡,適當添加光源能賦予設計深度與立體感,讓它更加引人注目。.明暗對照:透過去除多餘的中間色調,創造醒目且強烈的對比,增強Logo的可視性與影響力。.素描能讓設計師能自由繪出心中的點子,也能暫時遠離科技,沉醉在發揮想像力、練習手眼協調、專注於當下。.素描執行階段的最佳實務作法就是:複製、貼上,再調整。.簡報:傳達品牌深奧理念需要更多敘事。Logo重點在於如何用最一目了然的方式,傳達關於品牌的某個訊息。.提案:與其呈現一打粗糙的概念,不如呈現三個精良的概念。提供太多草案,也可能被解讀為你對你的設計沒自信。 本書特色:1.實用的設計指南:提供設計Logo的實用技巧,不論新手或資深設計師皆適用。2.強調設計原則:探討Logo設計的核心原則,幫助設計師打造簡潔有力的設計。3.兼顧理論與實踐:透過具體案例,展示設計原則如何應用在實際設計中。4.適用於多種媒體:涵蓋Logo在實體、數位與品牌識別中的多用途設計方法。 獨特而迷人的Logo設計不是一蹴而就的,它需要從理解Logo類型、掌握視覺要點,到熟悉設計流程的不斷修正與改進。不論是新手還是專業設計師,本書幫助你激發創意,並與客戶有效溝通,創造美感與品牌理念兼具的Logo設計。
優惠價: 9 468
庫存:2
紋飾圖案設計法
滿額折
出版日:2024/03/16 作者:路易斯.佛爾曼.戴伊  出版社:易博士  裝訂:平裝
「藝術的範圍實際上是無限的;它不是以繪畫和雕塑造型做為起始;只要有工藝的空間,就有藝術的空間。」——路易斯.佛爾曼.戴伊 壁紙、花磚、服飾、瓷器……圖案設計的應用範圍寬闊無邊,打開這本書,汲取作者從事設計數十年來的智慧結晶,一睹圖案設計的無窮可能。 本書作者路易斯.佛爾曼.戴伊是英國藝術和手工藝運動的重要人物,也是藝術與工藝展覽協會創始成員和英國皇家藝術學會的堅定成員。他的設計作品種類廣泛,包括玻璃、壁紙、紡織品和瓷磚。多年的業界經驗使他對紋飾圖案設計有著深厚的底蘊。除了擔任皇家藝術學院的講師以外,戴伊也是位多產的作家,這本書即是他因皇家藝術學會系列講座而完成的著作,也是最具影響力的其中一本。 書中收錄的作品從古老的日本、波斯、阿拉伯到近代的圖案皆有。亦有來自阿爾罕布拉宮、哥德式花窗、羅馬路面、埃及棺木上各種具代表性的紋飾。作者細心地將眾多紋飾圖案分門別類,使讀者得以有系統地認識各種形式與其設計方法。更篩選了來自15位近代史上舉足輕重的設計師作品,包括威廉.莫里斯、歐文.瓊斯、華特.克藍……等。我們得以從理想的典範中學習,進而思考如何逐步設計出自己的作品,無論是設計系學生、教師、設計師肯定都能從中獲益良多。 本書特色.300幅設計圖例:精選自古老的日本、波斯、阿拉伯到近代圖案設計代表作,為設計觀念做出更具體的闡釋.全面解析圖案設計:從圖案的定義開始,詳細解說各形狀的差異、如何構成,形成圖案的各類技巧到未來發展。.15位設計大師範例:收錄多位知名圖案設計師的經典作品,為設計理想樹立典範。.圖案設計要素解析:超過100幅作品輔以線稿解析,一眼明瞭如何由簡單的線逐漸構築出華麗複雜的圖案。 專業推薦傅銘傳 臺灣藝術大學 視覺傳達設計學系 教授 曾文昌 永燊達金屬創辦人 暨 我型我塑鐵花窗講師 陳德禧 deLightful time 美好.時光品牌總監Sharkie Lin 林家妤 科學未來館籌備小組、科學與藝術策展人沈奕妤 印花樂品牌創意總監
優惠價: 9 720
庫存:1
ASP.NET Core 7 MVC跨平台範例實戰演練
滿額折
出版日:2023/07/31 作者:奚江華  出版社:碁峰資訊  裝訂:平裝
「DotNet聖殿祭司」以多年程式開發經驗,將業界的專業開發技巧融入於書中! ASP.NET Core是跨平台的.NET框架,除了跨平台特性,整個框架底層更是高度重新大改寫,導入許多軟工Design Pattern與Principals原則,讓整個框架程式組織、運作與耦合度達到前所未有新高度。而ASP.NET Core中最重要的四大天王:Dependency Injection相依性注入、Configuration組態系統、Hosting與Middleware,更是貫穿整個應用程式設計與執行,可以說掌握此四者便掌握了ASP.NET Core核心精髓。無論新手與老手,本書皆能循序漸進地引導您,一步步深入ASP.NET Core精華的奧義殿堂。 精選章節,讓您Do Less, Get More,短時間內培養出即戰力!本書內容有: * 介紹MVC架構如何三分天下,精解Model、View與Controller三者職責與運作 * 以DI相依性注入設計抽象介面與實作,達成IoC控制反轉與鬆散耦合 * Configuration組態與Options Pattern選項模式共舞 * Model / Scaffolding CRUD / LINQ與Entity Framework Core資料庫存取 * View / Partial View / Tag Helpers / HTML Helpers / View Component / Layout功能解析 * 說明MVC中如何整合Bootstrap前端開發框架,有效建構RWD響應式網站 * 全面掌握Razor語法,提升View頁面的智慧與判斷力 * 用開源Chart.js及JSON製作HTML5互動式商業統計圖表 * 以jQuery Ajax / Web API / JSON三劍客建立輕量級高效能網站 * 用AJAX及MVC串接ChatGPT API製作AI聊天問答 * 將ASP.NET Core應用程式部署至Microsoft Azure雲端平台
優惠價: 9 774
庫存:3
HTML5、CSS3、JavaScript、jQuery、Vue.js、RWD網頁設計
滿額折
出版日:2022/12/12 作者:陳惠貞  出版社:碁峰資訊  裝訂:平裝
全彩印刷、內容持續進化、網羅最新技術、最新語法、最多範例 經典暢銷書全新改版,快速學會網頁設計的關鍵技術! 有了本書,讓你一次學會網頁設計的關鍵技術: *使用HTML5的元素和各種表單輸入類型,讓網頁的結構條理分明。 *使用CSS3的Box Model、定位方式、彈性版面(Flexbox Layout)、格線版面(Grid Layout),以及色彩、字型、文字、清單、背景、漸層、表格、版面設計、變形、轉場、媒體查詢等屬性,以根據PC或行動裝置的特徵設計網頁。 *使用JavaScript的基本語法和瀏覽器端的技術,讓靜態網頁具有動態效果,包括文件物件模型 (DOM)、瀏覽器物件模型 (BOM)、事件處理等。 *使用jQuery的基本語法、事件、特效和常用函式,讓操作HTML文件、選擇HTML元素、處理事件、建立特效動畫等動作變得更簡單。 *使用Vue.js提供的API進行資料繫結及操作網頁上的元素,解決畫面顯示與資料狀態同步的問題。Vue.js是近年來相當熱門的前端框架,簡單易學、容易導入並具有高度的擴充性。 *使用響應式網頁設計 (RWD,Responsive Web Design) 根據瀏覽器環境自動調整網頁的版面配置,讓網頁完整呈現在PC、平板、手機等裝置,達到One Web One URL (一網站一網址) 的目標。
優惠價: 9 504
庫存:2
出版日:2020/08/31 作者:Joe Valacich; Joey George  出版社:Pearson Education Limited  裝訂:平裝
Prioritising the practical over the technical, Modern Systems Analysis and Design presents the concepts, skills, methodologies, techniques, tools, and perspectives essential for systems analysts to develop information systems. The authors assume students have taken an introductory course on computer systems and have experience designing programs in at least one programming language. By drawing on the systems development life cycle, the authors provide a conceptual and systematic framework while progressing through topics logically. The 9th edition has been completely revised to adapt to the changing environment for systems development, with a renewed focus on agile methodologies.
定價:1390 元
無庫存
Renewable Energy & Sustainable Design
滿額折
出版日:2015/01/01 作者:Scott Grinnell  出版社:Cengage Learning  裝訂:精裝
Featuring current information and a practical approach, RENEWABLE ENERGY AND SUSTAINABLE DESIGN combines common forms of renewable energy with green building practices, offering an exciting and engagi
定價:1250 元
無庫存
出版日:2009/04/06 作者:STEPHENS; MEYERS  出版社:PEARSON  裝訂:平裝
This textbook takes a practical, hands-on, project-oriented approach to exploring the techniques and procedures for developing an efficient facility layout. The text also introduces state-of-the-art t
定價:1120 元
無庫存
出版日:2008/01/01 作者:HERAGU  出版社:CRC PRESS  裝訂:平裝
Delineating the proper design, layout, and location of facilities, this book strikes a healthy balance between theory and practice. It provides an understanding of the practical aspects of implementin
定價:1050 元
無庫存
出版日:1996/05/07 作者:ELIAHU ZAHAVI  出版社:CRC PRESS  裝訂:精裝
200 illustrations 15 pages of master tables Practical guidance for advanced machine design Modern and classical analyses Case studies on design successes (and failures!) Detailed presentat
定價:1000 元
無庫存
BRAND AND SINGLE PAGE DESIGN
滿額折
出版社:Designer Books  裝訂:平裝
This book ' BRAND AND SINGLE PAGE DESIGN r featured the newest more than 50 designers' works including some practical application of works in card design, page design, folding design, etc. The content
定價:1850 元
無庫存
Pattern Design 紋飾圖案設計套書(共二冊):紋飾圖案設計法+圖解圖樣設計
滿額折
出版日:2024/10/22 作者:路易斯‧佛爾曼‧戴伊; 阿莫爾‧芬恩; 藤田伸  出版社:易博士  裝訂:平裝
單書介紹第一冊:紋飾圖案設計法:從基礎構造、案例剖析到實作與驗證,解謎圖案設計經典之作 重複圖案是藝術活動遇上幾何所展開的瑰麗探索。在精緻繁複乃至自由隨意的圖案底下,無不潛在有條不紊的幾何秩序,令人稱奇讚嘆。這些都不是自然之物更非隨興為之,而是設計者的刻意規劃。 本書調查20世紀初可見的裝飾圖案,如建築細節、織品、砌磚、馬賽克、印刷物等,解析設計構造與脈絡,引領創作者從設計構想、構造線、起始方法到驗證、實作完成,展現設計紀律與藝術才能的專業之道。原著作者戴伊是英國皇家藝術學院歷史紋飾講師,致力於圖案應用藝術教育,圖案設計教學著作享譽空前。因應不輟的市場需求,三十年後芬恩接力增訂。章節架構嚴謹、體例整備,深入淺出,是有志於圖案設計或學生絕對不能錯過的經典教程。 本書特色:‧近300幅作品圖例,從結構、步驟到完成‧橫跨古代手工藝設計到20世紀初機器製造‧含括波斯和阿拉伯、日本及歐陸風格名作 打開本書,你將豁然解開最繁複瑰麗圖案的設計謎底:一、圖案和幾何基礎認識圖案;方形、三角形(菱形、六邊形、星形)、八邊形(放射狀、十六和十八邊形、五角形)、圓形(曲線形、之字形、魚鱗紋、雙彎曲線);圖案的演變。二、飾邊認識飾邊,回形紋、漸屈紋、之字紋、鋸齒紋、水波紋、扭索紋、交織、鎖鏈狀、條帶、分枝、螺旋渦捲、交互轉換、轉角、環狀同心。三、翻轉、下降重複、小型的重複、轉向寬度翻倍;在菱形線上設計、在方形線上設計、砌磚方案、六邊形方案、階梯圖案、偽下降;大型設計;小單元大效果、阿拉伯圖案解析。四、實際設計規劃及各式構架潛在的線和可作業的線、東方三角形方案、西方的矩形方案、三角形和八邊形重複改成矩形、菱形的可能性。五、設計的起始與驗證,及顏色應用與好用技法在制式線條上規劃自由的圖案、系統的必要、各式圖案的起始方式:交換轉換飾邊、幾何菱形紋、從塊體開始、從線條開始、從花朵布局開始;測試方法;形式與顏色的關聯;印刷的可能性、「單件」空間。六、圖案創作及設計的發展模仿和轉化、傳統與現代;歌德式復興、國會大廈的設計、維多利亞中期的流行、歐文.瓊斯和古代西方及東方藝術、新藝術風格、歐陸設計(巴黎、維也納)、未來主義的影響、現代主義、設計名家作品介紹。專業推薦(按姓氏筆劃排列)Sharkie Lin 林家妤科學未來館籌備小組、科學與藝術策展人沈奕妤印花樂品牌創意
優惠價: 9 1440
無庫存
出版日:2023/06/07 作者:Mohanty  出版社:滄海  裝訂:精裝
The book elucidates the revolutionary and riveting research in the ultramodern domain of drone technologies, drone-enabled IoT applications, and artificial intelligence-based smart surveillance. The book explains the most recent developments in the field, challenges, and future scope of drone technologies. Beyond that, it discusses the importance of a wide range of design applications, drone/UAV development, and drone-enabled smart healthcare systems for smart cities. It describes pioneering work on mitigating cyber security threats by employing intelligent machine learning models in the designing of IoT-aided drones. The book also has a fascinating chapter on application intrusion detection by drones using recurrent neural networks. Other chapters address interdisciplinary fields like artificial intelligence, deep learning, the role of drones in healthcare in smart cities, and the importance of drone technology in agriculture.
定價:1960 元
無庫存
Antenna Design for Microwave and Millimeter-Wave 5g Mobile Devices
滿額折
出版日:2022/12/28 作者:Wonbin Hong; SIM (沈昭元)  出版社:IEEE  裝訂:精裝
Presenting a series of detailed antenna design methodologies and approaches ranging from sub-6 GHz microwave to millimeter-wave spectrum, this book takes a holistic, multi-disciplinary perspective. It covers: - How microwave and millimeter-wave 5G antennas coexist and function independently and collaboratively - Key considerations when designing millimeter-wave 5G antennas within space-constrained mobile devices - Practical considerations such as cost, fabrication yield, heat dissipation when designing 5G mobile antennas - The future direction of how 5G antennas will evolve Written by two of the world's most renowned mmWave antenna experts and inventors, this book provides in-depth academic and practical guidance for those preparing wireless products for 5G mobile devices.
定價:3850 元
無庫存
NMR Probeheads for Biophysical and Biomedical Experiments ─ Theoretical Principles & Practical Guidelines
滿額折
出版日:2014/07/15 作者:Joel Mispelter; Mihaela Lupu; Andre Briguet  出版社:World Scientific Pub Co Inc  裝訂:精裝
This book is intended to provide the basis of knowledge to design and build NMR probeheads specific for a given experiment like in vivo magnetic resonance spectroscopy or imaging. Since the book is in
優惠價: 9 5049
無庫存
Design of CMOS RF Integrated Circuits and Systems
滿額折
出版日:2010/05/30 作者:Kiat Seng Yeo; Manh Anh Do; Chirn Chye Boon  出版社:World Scientific Pub Co Inc  裝訂:精裝
This book provides the most comprehensive and in-depth coverage of the latest circuit design developments in RF CMOS technology. It is a practical and cutting-edge guide, packed with proven circuit te
優惠價: 9 2081
無庫存
OBJECT ORIENTED SYSTEMS ANALYSIS AND DESIGN (S-PIE)
95 折
出版日:2009/01/01 作者:NOUSHIN ASHRAFI; HESSAM ASHRAFI  出版社:全華經銷  裝訂:平裝
This text teaches students object-oriented systems analysis and design in a highly practical and accessible way. For business professionals who would like a firm grounding in object-oriented systems a
優惠價: 95 1121
無庫存
Digital Signal Processing 5/e
滿額折
出版日:2025/01/01 作者:Proakis  出版社:PEARSON  裝訂:平裝
●Practical applications include examples, over 500 homework problems, and computer problems.●Describes techniques to convert analog signals, the analysis of linear time-invariant discrete-time systems and signals in the time domain, and bilateral and unilateral z-transform methods.●Analyzes signals and systems in the frequency domain, the Fourier series and transform in continuous- and discrete-time signals, and the sampling and reconstruction of continuous-time signals.●Examines realizations of IIR and FIR systems and techniques to design digital filters.●Looks at sampling-rate conversion and applications to multirate digital signal processing.●Discusses linear prediction, optimum linear filters and single-channel adaptive filers based on the LMS and RLS algorithms.
定價:1480 元
無庫存
Lilian老師國際漢語教學私房菜:真實情景下的教學設計與案例探究(簡體版)
滿額折
出版日:2022/01/01 作者:王莉莉(Lilian Wong)  出版社:香港三聯書店  裝訂:平裝
關於本書:本書是為小學國際漢語教師編寫的教學策略集,適用於IBPYP課程、雙語課程的母語及二語/外語教學,由真實情景、實際問題出發,結合可視化教學、運用ICT,幫助教師系統、有效地計劃和組織個性化教學。 本書特色:系統性:夯實語文基礎,包含聽、說、讀、寫四大技能下的67種教學策略。科學性:由67個教學實際問題導入,提供詳細的示例指導和理論解析。實用性:提供七套教學錦囊,93個電子資源,實現無紙化、差異化教學。 About the Book:This book is a set of teaching strategies specifically designed for primary school international Chinese teachers. It is applicable to the first and second / foreign language teaching of IBPYP courses and bilingual courses. Based on the authentic situation and practical issues, combined with visualizing teaching and ICT, it assists teachers systematically and effectively to plan and organize personalized teaching. Features:Systematically: Enhancing Chinese knowledge, including 67 teaching strategies based on the four skills of listening, speaking, reading and writing.Theoretically: Started with 67 practical teaching issues and provide specific teaching examples and theoretical guidance.Practicability: Providing 7 kinds of teaching skills and 93 electro
優惠價: 79 632
無庫存
Microwave Engineering, Fourth Edition International Adaptation
滿額折
出版日:2021/02/01 作者:Pozar  出版社:John Wiley & Sons Inc  裝訂:平裝
●Thorough analysis and development based on fundamental principles. Students develop understanding of core concepts and learn that the operation of microwave circuits and devices can be explained through the use of circuit theory, Maxwell's equations, and related fundamentals. See Wilkinson divider operation derived from basic circuit and transmission line theory.●Many examples cover both theory and design. Student can see how typical problems are solved, how practical designs are carried out, and how component designs perform. The availability of realistic and thorough examples reinforces subject matter. See Example 7.7 that involves the design of a coupled line coupler on a lossy substrate. The design procedure is illustrated, and the response of the coupler is obtained using a CAD package.●Many problems cover both theory and design. Problems test the student's understanding of the material and offer the opportunity for in-depth design and analysis of practical components. Problems o
定價:1540 元
無庫存
ISE Operations Management
滿額折
出版日:2020/01/21 作者:William J Stevenson  出版社:McGraw-Hill Education  裝訂:平裝
This beloved and market-leading Operations Management book has been completely updated in the 14th edition and provides a clear presentation of the field of Operations Management with current real-world examples and thoughtful student pedagogy. The comprehensive breadth of content is presented in more modular flexible chapters, so it may be used for different course levels ranging from undergrad to executive education. That flexibility allows for the choice of more or less quantitative material and flexibility in order of presentation since chapters do not depend on sequence.The topics covered include both strategic issues and practical applications. Among the topics are forecasting, product and service design, capacity planning, management of quality and quality control, inventory management, scheduling, supply chain management, and project management. The use of an adaptive online learning enhances the student experience and success.
優惠價: 9 1512
無庫存
Breakthrough Plus 3 2/e (with Digibook Code)
滿額折
出版日:2016/12/01 作者:Miles Craven  出版社:文鶴  裝訂:平裝
New edition of the successful communication-focused course that builds young adult and adult learners‘ confidence to use English and communicate in everyday situations.Breakthrough Plus 2nd edition contains up-to-date content, a fresh design, and a digital version of the Student's Book. This new edition is a truly blended, flexible, content-rich course, which covers high-interest themes in a thorough but accessible way.● NEW: Student's Resource Center, and page-faithful Digital Student's Book with integrated audio and video, extra practice, and over 150 interactive activities with score reports● NEW: Additional video material, including conversations, interactive real life exchanges, and interviews with viewing skills tasks● NEW: Presentation skills with practical guidance on how to present successfully in English● Broad, international, cross-cultural themes● Authentic natural language presented and practiced through clear, contextualized, and achievable tasks● Genuine flexibility and fo
定價:680 元
無庫存
Compact Hierarchical Bipolar Transistor Modeling With Hicum
滿額折
出版日:2010/09/30 作者:Michael Schroter; Anjan Chakravorty  出版社:World Scientific Pub Co Inc  裝訂:精裝
Compact Hierarchical Bipolar Transistor Modeling with HICUM will be of great practical benefit to professionals from the process development, modeling and circuit design community who are interested i
優惠價: 9 5294
無庫存
出版日:2010/01/01 作者:HOUGHTALEN HWANG; AKAN  出版社:PEARSON  裝訂:平裝
This fundamental treatment of engineering hydraulics balances theory with practical design solutions to common engineering problems. The author examines the most common topics in hydraulics, including
定價:1260 元
無庫存
出版日:2008/08/29 作者:Yi Huang; Kevin Boyle  出版社:John Wiley & Sons Inc  裝訂:精裝
Practical, concise and complete reference for the basics of modern antenna design Antennas: from Theory to Practice discusses the basics of modern antenna design and theory. Developed specifical
定價:5200 元
無庫存
FOCUS ON GRAMMER 5 3/E
95 折
出版日:2007/08/01 作者:JAY MAURER  出版社:東華書局  裝訂:平裝
With a fresh new design and a host of updated exercises and activities, the popular Focus on Grammar series is more practical and accessible than ever. Known for its focus on English grammar throug
優惠價: 95 646
無庫存
Focus On Grammar 2—An Integrated Skills Approach
95 折
出版日:2006/02/08 作者:IRENE E. SHEENBERG  出版社:東華書局  裝訂:平裝
With a fresh new design and a host of updated exercises and activities, the popular Focus on Grammar series is more practical and accessible than ever. Known for its focus on English grammar through c
優惠價: 95 646
無庫存
MAGNETIC ACTUATORS AND SENSORS
滿額折
出版日:2006/01/01 作者:BRAUER  出版社:JOHN WILEY & SONS;INC.  裝訂:平裝
This practical text features computer-aided engineering methods for the design and application of magnetic actuators and sensors, using the latest software tools. John Brauer highlights the use of the
定價:1400 元
無庫存
FOCUS ON GRAMMAR 3
95 折
出版日:2005/11/30 作者:MARJORIE FUCHS; MARGARET BONNER; MIRIAM WESTHEIMER  出版社:東華書局  裝訂:平裝
With a fresh new design and a host of updated exercises and activities, the popular Focus on Grammar series is more practical and accessible than ever. Known for its focus on English grammar throug
優惠價: 95 751
無庫存
HARDWARE DESDIGN VERIFICATION: SIMULATION AND FORMAL METHOD-BASED APPROACHES
滿額折
出版日:2005/01/01 作者:LAM  出版社:PRENTICE-HALL;INC.  裝訂:平裝
The Practical, Start-to-Finish Guide to Modern Digital Design Verification As digital logic designs grow larger and more complex, functional verification has become the number one bottleneck in the
定價:1380 元
無庫存
FUNDAMENTALS OF MATH AND PHYSICS FOR GAME PROGRAMMERS
95 折
出版日:2005/01/01 作者:WENDY STAHLER  出版社:全華經銷  裝訂:平裝
Written by respected academics and industry practitioners, the Game Design and Programming Series combines theory and practical applications to help instructors teach and prepare students for a career
優惠價: 95 1026
無庫存
出版日:2002/07/04 作者:SERGEY N. MAKAROV  出版社:JOHN WILEY & SONS;LTD  裝訂:精裝
An accessible and practical tool for effective antenna designDue to the rapid development of wireless communications, the modeling of radiation and scattering is becoming more important in the design
定價:1380 元
無庫存
Building Scientific Apparatus: A Practical Guide to Design and Construction
95 折
作者:Moore  出版社:華泰  裝訂:平裝
This is, essentially, the only book that explains how to build research apparatus, how to take advantage of commercial suppliers of scientific apparatus, where to find suppliers, and how to use manufa
優惠價: 95 1900
無庫存
出版日:2015/07/25 作者:林妍君; 許常翊  出版社:佳魁資訊  裝訂:平裝
此書的撰寫概念是以室內設計實務經驗分享為出發點。以室內所需圖面表達為主軸,再將2D 的平、立面圖為優先繪製的主要考量,讓學習者在閱讀此書之同時能吸收接受繪圖指令技巧與實際練習一個案例, 並包含完整圖面及施工過程、照片輔助,剖面圖及大樣圖概念略微帶入其中說明敎授之;細節如操作環境變更及規劃、異動、撰寫修訂程式以及圖面如何導入Autodesk 3ds Max 的應用。  
絕版無法訂購
  • 52
    2
  • 1
  • 2

暢銷榜

客服中心

收藏

會員專區