如何在 MATLAB GUI 中获取分段线性函数
我想在 MATLAB 2010a 中实现一个 GUI,用户能够以交互方式输入 分段线性函数 (通过单击添加/删除点并通过拖放移动点)。 这里是 C# 中的实现。
我希望 MATLAB 中有类似的实现,它使用轴或任何其他对象来捕获鼠标事件并更新分段函数。以下是分段线性函数形式的用户输入的一些示例:
I want to implement a GUI in MATLAB 2010a that user be able to input a Piecewise linear function interactively (add/remove points by click and move point by drag and drop). Here is an implementation in C#.
I am hope there is an similar implementation in MATLAB that uses axes or any other object that capture mouse events and update the piecewise function. Below is some examples of user input as a piecewise linear function:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将下面的函数保存到路径上名为 addPoint.m 的 m 文件中,并在命令行中输入以下内容:
这将创建一个轴,每次单击轴。 addPoint 创建一条线(如果尚不存在线),获取单击点的坐标,并将这些坐标添加到线的
XData
和YData
属性中线。您可以通过防止第一次单击后自动更新轴限制来改进这一点。
Save the function below to an m-file on your path called addPoint.m and enter the following at the command line:
This creates an axes that will execute addPoint every time the axes is clicked. addPoint creates a line if no line exists already, gets the coordinates of the clicked point and adds these coordinates to the
XData
andYData
properties of the line.You could improve this by preventing the axes limits from being automatically updated after the first click.