17.7 Events

本文详细介绍了C#中事件的概念及其使用方式。事件是一种特殊成员,允许对象或类提供通知。客户端可以通过提供事件处理程序来响应这些通知。文章解释了如何声明事件,并提供了实例演示如何附加和移除事件处理程序。
An event is a member that enables an object or class to provide
notifications. Clients can attach executable code
for events by supplying event handlers.
Events are declared using event-declarations:
event-declaration:
attributesopt event-modifiersopt event type variable-declarators ;
attributesopt event-modifiersopt event type member-name {
event-accessor-declarations }
event-modifiers:
event-modifier
event-modifiers event-modifier
event-modifier:
new
public
protected
internal
private
static
virtual
sealed
override
abstract
extern
event-accessor-declarations:
add-accessor-declaration remove-accessor-declaration
remove-accessor-declaration add-accessor-declaration
add-accessor-declaration:
attributesopt add block
Chapter 17 Classes
247
remove-accessor-declaration:
attributesopt remove block
An event-declaration may include a set of attributes (§24) and a valid
combination of the four access modifiers
(§17.2.3), the new (§17.2.2), static (§17.5.2, §17.7.3), virtual (§17.5.
3, §17.7.4), override (§17.5.4,
§17.7.4), sealed (§17.5.5), abstract (§17.5.6, §17.7.4), and extern
modifiers.
Event declarations are subject to the same rules as method declarations (§17
.5) with regard to valid combinations
of modifiers.
The type of an event declaration must be a delegate-type (§11.2), and that
delegate-type must be at least as
accessible as the event itself (§10.5.4).
An event declaration may include event-accessor-declarations. However, if
it does not, for non-extern, nonabstract
events, the compiler shall supply them automatically (§17.7.1); for extern
events, the accessors are
provided externally.
An event declaration that omits event-accessor-declarations defines one or
more events?one for each of the
variable-declarators. The attributes and modifiers apply to all of the
members declared by such an eventdeclaration.
It is a compile-time error for an event-declaration to include both the
abstract modifier and brace-delimited
event-accessor-declarations.
When an event declaration includes an extern modifier, the event is said to
be an external event. Because an
external event declaration provides no actual implementation, it is an
error for it to include both the extern
modifier and event-accessor-declarations.
An event can be used as the left-hand operand of the += and -= operators (§1
4.13.3). These operators are used,
respectively, to attach event handlers to, or to remove event handlers from
an event, and the access modifiers of
the event control the contexts in which such operations are permitted.
Since += and ?= are the only operations that are permitted on an event
outside the type that declares the event,
external code can add and remove handlers for an event, but cannot in any
other way obtain or modify the
underlying list of event handlers.
In an operation of the form x += y or x ?= y, when x is an event and the
reference takes place outside the type
that contains the declaration of x, the result of the operation has type
void (as opposed to having the type of x,
with the value of x after the assignment). This rule prohibits external
code from indirectly examining the
underlying delegate of an event.
[Example: The following example shows how event handlers are attached to
instances of the Button class:
public delegate void EventHandler(object sender, EventArgs e);
public class Button: Control
{
public event EventHandler Click;
}
public class LoginDialog: Form
{
Button OkButton;
Button CancelButton;
public LoginDialog() {
OkButton = new Button(?);
OkButton.Click += new EventHandler(OkButtonClick);
CancelButton = new Button(?);
CancelButton.Click += new EventHandler(CancelButtonClick);
}
void OkButtonClick(object sender, EventArgs e) {
// Handle OkButton.Click event
}
C# LANGUAGE SPECIFICATION
248
void CancelButtonClick(object sender, EventArgs e) {
// Handle CancelButton.Click event
}
}
Here, the LoginDialog instance constructor creates two Button instances and
attaches event handlers to the
Click events. end example]
PS C:\Users\admin\Desktop> Invoke-WebRequest -Uri "https://mirrors.tuna.tsinghua.edu.cn/electron-builder-binaries/nsis-3.0.4.1/nsis-3.0.4.1.7z" -OutFile "nsis-3.0.4.1.7z" Invoke-WebRequest : <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content ="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=" 您访问的资源未能找到 | 404 | 清华大学开源软件镜像站,致力于为国内和校内用户提供高质量的开源软件镜像、Linux 镜像源服 务,帮助用户更方便地获取开源软件。本镜像站由清华大学 TUNA 协会负责运行维护。"> <meta name="keywords" content="镜像 站,镜像源,Linux,软件源,开源"> <meta name="author" content="Tsinghua University TUNA Association"> <link rel="shortc ut icon" href="/static/img/favicon.png"> <link rel="alternate" type="application/rss+xml" title="镜像站新闻" href=" /feed.xml"> <meta property="og:title" content=" 404 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror"/> <meta property="og:description" content="您访问的资源未能找到 | 404 | 清华大学开源软件镜像站,致力于为国内和校内用户提供 高质量的开源软件镜像、Linux 镜像源服务,帮助用户更方便地获取开源软件。本镜像站由清华大学 TUNA 协会负责运行维护。"/> <meta property="og:image" content="https://mirrors.tuna.tsinghua.edu.cn/static/img/logo-share.png"/> <meta propert y="og:url" content="https://mirrors.tuna.tsinghua.edu.cn/404.html"/> <meta property="og:locale" content="zh_CN"/> < meta property="og:type" content="website"/> <title> 404 | 清华大学开源软件镜像站 | Tsinghua Open Source Mirror</tit le> <script src="/assets/notfound-WIu3FLHo.js" crossorigin="anonymous" type="module"></script> <link href="/assets/ default-CLQif249.js" rel="modulepreload" as="script" crossorigin="anonymous"/> <link href="/assets/notfound-oq0mkAX Q.css" rel="stylesheet" media="screen" crossorigin="anonymous"/> <link href="/assets/default-DIYeuWpa.css" rel="sty lesheet" media="screen" crossorigin="anonymous"/> <script nomodule>!function(){var t=document.createElement("script ");if(!("noModule"in t)&&"onbeforeload"in t){var n=!1;document.addEventListener("beforeload",function(e){if(e.targe t===t)n=!0;else if(!e.target.hasAttribute("nomodule")||!n)return;e.preventDefault()},!0),t.type="module",t.src=".", document.head.appendChild(t),t.remove()}}();</script> <script src="/assets/polyfills-legacy-B13to-nv.js" crossorigi n="anonymous" id="vite-legacy-polyfill" nomodule></script> <script nomodule defer>System["import"]("/assets/notfoun d-legacy-CZ7RcbXh.js");</script> <script src="/assets/moduleGuard-D9DpvRet.js" crossorigin="anonymous" type="module "></script> <script data-dummytype="application/javascript" type="module">!function(){var e=function(){var e=docume nt.getElementById("vite-legacy-polyfill"),n=document.createElement("script");n.src=e.src,n.onload=function(){System ["import"]("/assets/notfound-legacy-CZ7RcbXh.js")},document.body.appendChild(n)};try{new Function("m","return impor t(m)"),document.addEventListener("DOMContentLoaded",function(){document.documentElement.hasAttribute("data-module-l oaded")||(console.warn("vite: loading legacy build because esm module is not loaded"),e())})}catch(n){console.warn( "vite: loading legacy build because dynamic import is unsupported, syntax error above should be ignored"),e()}}();< /script> <link rel="stylesheet" id="style-polyfill-bs3" title="style-polyfill-bs3" href="/assets/bs3-polyfill-D-SBF s68.css" media="screen" integrity="sha256-OnlyforlegacybrowsersAAAAAAAAAAAAAAAAAAAAAA="/> <script>!function(){var e =document.getElementById("style-polyfill-bs3");if(e)try{if(!CSS.supports("color","var(--fake-var)"))throw!1;e.disab led=!0,e.parentNode.removeChild(e)}catch(r){for(var t=0,l=0;l<document.styleSheets.length;l++)if(document.styleShee ts[l].title===e.title){t=1;break}if(!t){var o=e.cloneNode();o.integrity="",document.head.appendChild(o)}}}();</scri pt> </head> <body> <div class="navbar navbar-expand-lg navbar-default mt-3" role="navigation"> <div class="containe r-fluid container-xl"> <div class="navbar-header"> <a class="navbar-brand" href="/"> <span class="thuhidden"> <pict ure> <source srcset="/static/img/logo-small-dark.png 1x, /static/img/logo-small-dark@2x.png 2x, /static/img/logo-sm all-dark@3x.png 3x, /static/img/logo-small-dark@4x.png 4x" media="(prefers-color-scheme: dark)"/> <img src="/static /img/logo-small.png" srcset="/static/img/logo-small.png 1x, /static/img/logo-small@2x.png 2x, /static/img/logo-smal l@3x.png 3x, /static/img/logo-small@4x.png 4x" alt=""/> </picture> 清华大学</span>开源软件镜像站 </a> </div> <butto n type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls= "navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation"> <svg class="icon"><use xlink:href='#fas.f a-bars'></use></svg> </button> <div class="navbar-collapse collapse justify-content-end" id="navbarNavDropdown"> <u l class="nav navbar-nav" role="menubar"> <li role="none" class="nav-item"><a role="menuitem" class="nav-link" href= "https://tuna.moe">HOME</a></li> <li role="none" class="nav-item"><a role="menuitem" class="nav-link" href="https:/ /tuna.moe/events/">EVENTS</a></li> <li role="none" class="nav-item"><a role="menuitem" class="nav-link" href="https ://tuna.moe/blog/">BLOG</a></li> <li role="none" class="nav-item"><a role="menuitem" class="nav-link" href="https:/ /tuna.moe/feed.xml">RSS</a></li> <li role="none" class="nav-item"><a role="menuitem" class="nav-link" href="https:/ /podcast.tuna.moe/">PODCAST</a></li> <li role="none" class="nav-item"><a role="menuitem" class="nav-link active" ar ia-checked="true" href="https://mirrors.tuna.tsinghua.edu.cn">MIRRORS</a></li> </ul> </div> </div> </div> <div id=" mirrors"> <div class="spacing hidden-xs"></div> <div class="container"> <div class="row"> <div class="not-found"> < div class="not-found-bg"></div> <div class="not-found-hint"> <div class="not-found-code"> 404 NOT FOUND </div> <spa n class="thuhidden">呜喵,金枪鱼</span>被吃掉了 </div> <div class="not-found-text thuhidden"> 如果您认为这一定是出 了什么问题,或者正在寻找暂未包含的镜像,欢迎您前往 <a href="https://github.com/tuna/issues/issues/new/choose"> <svg class="icon"><use xlink:href='#fab.fa-github'></use></svg> tuna/issues </a> 提交<a href="https://github.com/tuna/i ssues/issues/new?labels=Service+Issue,404&template=3-bug_report.yaml" id="new_issue_bug">错误报告</a>或者<a href="h ttps://github.com/tuna/issues/issues/new?labels=MirrorRequest&template=1-mirror_request.yaml" id="new_issue_mr">镜 像申请</a>。 <br/> 请特别注意:如果您从任何大语言模型或者聊天助手获取了指向本镜像站的链接,则很可能此文件并不存在, 请谨慎甄别。 </div> <div class="not-found-links"> <a class="not-found-link" href="javascript:history.back()"> <svg class="icon"><use xlink:href='#fas.fa-arrow-left'></use></svg> 返回上一页 </a> <a class="not-found-link" href="/"> 镜像列表 <svg class="icon"><use xlink:href='#fas.fa-arrow-right'></use></svg> </a> </div> </div> </div> </div> </di v> <div class="flex-grow-1"></div> <div id="footerwrap" class="tuna-foot"> <div class="container"> <div class="row" > <div class="col-lg-4 col-12"> <p class="thuhidden">本站由清华大学信息化技术中心支持创办,由清华大学 TUNA 协会运行 维护。</p> <p class="thuhidden">清华大学 TUNA 协会,全名清华大学学生网络与开源软件协会,是由清华大学热爱网络技术和 开源软件的极客组成的学生技术社团。</p> <p>本站相关源码可在 <a href="https://github.com/tuna/tunasync"><em>这里(镜像 管理器)</em></a> 和 <a href="https://github.com/tuna/mirror-web">这里(镜像站网页)</a> 获取。</p> <p class= "thuhidden">根据相关法律法规,本站不对欧盟用户提供服务。</p> </div> <div class="col-lg-4 col-12"> <h4 class="mt-0"> Contact Us</h4> <div class="thuhidden"> <ul class="social"> <li> <a href="https://groups.google.com/forum/#!forum/t una-general"><svg class="icon"><use xlink:href='#fas.fa-envelope'></use></svg> Mailing List</a> </li> <li> <a href= "https://web.libera.chat/#tuna"><svg class="icon"><use xlink:href='#fas.fa-hashtag'></use></svg> #tuna at Libera.Ch at</a> </li> <li> <a href="https://github.com/tuna/"><svg class="icon"><use xlink:href='#fab.fa-github'></use></svg > GitHub </a> </li> <li> <a href="http://weibo.com/u/5402274706"><svg class="icon"><use xlink:href='#fab.fa-weibo'> </use></svg> 新浪微博</a> </li> </ul> </div> <h4>Sponsor</h4> <div class="img-responsive thuhidden"> <img src="/sta tic/img/megvii-s.png" srcset="/static/img/megvii-s.png 1x, /static/img/megvii-s@2x.png 2x, /static/img/megvii-s@3x. png 3x, /static/img/megvii-s@4x.png 4x" alt="旷视"/> <img src="/static/img/huawei.png" srcset="/static/img/huawei.p ng 1x, /static/img/huawei@2x.png 2x, /static/img/huawei@3x.png 3x, /static/img/huawei@4x.png 4x" alt="华为"/> </div > <p class="thuhidden">本存储服务器由<a href="https://megvii.com/">旷视科技有限公司</a>(Megvii Technology Ltd.)赞 助。TUNA 感谢旷视和华为对开源软件和社区的贡献。</p> </div> <div class="col-lg-4 col-12"> <img class="img-responsive thuhidden center-block" style="margin-top:5%" src="/static/img/logo-white.png" srcset="/static/img/logo-white.png 1x, /static/img/logo-white@2x.png 2x, /static/img/logo-white@3x.png 3x, /static/img/logo-white@4x.png 4x"/> </div> </div> </div> </div> <svg display="none" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w 3.org/1999/xlink"> <defs> <symbol id='fas.fa-bars' viewBox='0 0 448 512'> <title>bars</title> <path class='path1' d ='M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32 -14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z'></path> </symbol> <symbol id='fab.fa-github' viewBox='0 0 496 512'> <title>github</title> <path class='path1' d='M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3 .6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6 .2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C10 6.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7 -29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8- 27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25 .8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3 -.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3- 4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14 .7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z'></path> </symbol> <symb ol id='fas.fa-arrow-left' viewBox='0 0 448 512'> <title>arrow-left</title> <path class='path1' d='M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-1 4.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z'></path> </symbol> <symbol id='fas.fa-arrow-right' viewBox='0 0 448 512'> <title>arrow-right</title> <path class='path1' d='M438.6 278.6c12.5 -12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 3 2s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z'></path> </symbol> <symbo l id='fas.fa-envelope' viewBox='0 0 512 512'> <title>envelope</title> <path class='path1' d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5- 21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0 L0 176z'></path> </symbol> <symbol id='fas.fa-hashtag' viewBox='0 0 448 512'> <title>hashtag</title> <path class='p ath1' d='M181.3 32.4c17.4 2.9 29.2 19.4 26.3 36.8L197.8 128h95.1l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3s29.2 19.4 2 6.3 36.8L357.8 128H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H347.1L325.8 320H384c17.7 0 32 14.3 32 32s-14.3 32-32 32H 315.1l-11.5 69.3c-2.9 17.4-19.4 29.2-36.8 26.3s-29.2-19.4-26.3-36.8l9.8-58.7H155.1l-11.5 69.3c-2.9 17.4-19.4 29.2-3 6.8 26.3s-29.2-19.4-26.3-36.8L90.2 384H32c-17.7 0-32-14.3-32-32s14.3-32 32-32h68.9l21.3-128H64c-17.7 0-32-14.3-32-3 2s14.3-32 32-32h68.9l11.5-69.3c2.9-17.4 19.4-29.2 36.8-26.3zM187.1 192L165.8 320h95.1l21.3-128H187.1z'></path> </sy mbol> <symbol id='fab.fa-weibo' viewBox='0 0 512 512'> <title>weibo</title> <path class='path1' d='M407 177.6c7.6-2 4-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446 .7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-3 3.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94- 163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16. 8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311 c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5 zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8.3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4 c-5.1-1.7-11.4.6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z'></path> </symb ol> </defs> </svg> </body> </html> 所在位置 行:1 字符: 1 + Invoke-WebRequest -Uri "https://mirrors.tuna.tsinghua.edu.cn/electron ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-WebRequest],Web Exception + FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeWebRequestCommand PS C:\Users\admin\Desktop>
11-29
【RIS 辅助的 THz 混合场波束斜视下的信道估计与定位】在混合场波束斜视效应下,利用太赫兹超大可重构智能表面感知用户信道与位置(Matlab代码实现)内容概要:本文围绕“IS 辅助的 THz 混合场波束斜视下的信道估计与定位”展开,重点研究在太赫兹(THz)通信系统中,由于混合近场与远场共存导致的波束斜视效应下,如何利用超大可重构智能表面(RIS)实现对用户信道状态信息和位置的联合感知与精确估计。文中提出了一种基于RIS调控的信道参数估计算法,通过优化RIS相移矩阵提升信道分辨率,并结合信号到达角(AoA)、到达时间(ToA)等信息实现高精度定位。该方法在Matlab平台上进行了仿真验证,复现了SCI一区论文的核心成果,展示了其在下一代高频通信系统中的应用潜力。; 适合人群:具备通信工程、信号处理或电子信息相关背景,熟悉Matlab仿真,从事太赫兹通信、智能反射面或无线定位方向研究的研究生、科研人员及工程师。; 使用场景及目标:① 理解太赫兹通信中混合场域波束斜视问题的成因与影响;② 掌握基于RIS的信道估计与用户定位联合实现的技术路径;③ 学习并复现高水平SCI论文中的算法设计与仿真方法,支撑学术研究或工程原型开发; 阅读建议:此资源以Matlab代码实现为核心,强调理论与实践结合,建议读者在理解波束成形、信道建模和参数估计算法的基础上,动手运行和调试代码,深入掌握RIS在高频通信感知一体化中的关键技术细节。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值