博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
matlab画直线,指定斜率与x坐标范围
阅读量:6432 次
发布时间:2019-06-23

本文共 408 字,大约阅读时间需要 1 分钟。

闲话不说,直接上代码与图的效果!

 

AngleD=59; %[-90 90]
c=20:80;
centralPoint=[50 50]';
image=zeros(100,100);
image(25:74,25:74)=ceil(abs(rand(50,50).*10));
if abs(AngleD)==90,
    fprintf(1,'no single line for the x area\n');
elseif AngleD==0,
    r=centralPoint(1).*ones(size(c,2),1);
else
    k=tand(AngleD);
    b=centralPoint(1)-k*centralPoint(2);
    r=k.*c+b;
end
imagesc(image);
hold on
plot(c,r,'r-');
hold off;
colormap gray;
axis equal

 

转载地址:http://rgtga.baihongyu.com/

你可能感兴趣的文章
tornado+datatables分页
查看>>
集成 Kubernetes 与 Cloud Foundry,IBM自有一套
查看>>
php 中英文字符分割
查看>>
No module named yum
查看>>
Shell处理用户输入参数----getopts
查看>>
【函数】06、装饰器的应用
查看>>
v$sysstat
查看>>
剑指offer 66通关纪念
查看>>
医疗信息化 医学 医院管理 医疗器械 资料下载
查看>>
nginx.conf 示例配置
查看>>
在办公电脑上设置日志服务器监控思科和华为设备
查看>>
python 字符串替换
查看>>
我的友情链接
查看>>
Linux之常用网络命令
查看>>
linux php 安装 curl
查看>>
思科rip、dhcp、vlan
查看>>
tomcat nginx默许的post大小限制
查看>>
OSI七层模型
查看>>
去除工程的.svn隐藏文件夹
查看>>
Python24 终端如何输出彩色字体
查看>>