How to draw a line on a logical matrix in a given scale?
1 次查看(过去 30 天)
显示 更早的评论
I want to transform two vectors (x, y) that describe a straight line into a logical matrix, but on a certain scale.
For example:
x = linspace (2e-2,6e-2,20);
y = 4e-2 * ones (1,20);
a = [x' y'];
plot (x,y);
axis([1e-2 7e-2 1e-2 7e-2])
I want to get a logical matrix (100*100), that has this scale.
2 个评论
Adam Danz
2019-2-22
What does it mean to convert a straight line into a logical matrix?
It sounds like meshgrid() may come in handy but it's unclear to me what your goal is.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!