Increasing numerator and denominator of vectors
1 次查看(过去 30 天)
显示 更早的评论
How do I generate a vector of the form 0, 1/2, 2/3, 3/4, 4/5...9/10?
0 个评论
采纳的回答
madhan ravi
2019-7-24
[0,(1:9) ./ (2:10)]
2 个评论
Stephen23
2019-7-24
Also:
>> (0:9)./(1:10)
ans =
0 0.5 0.66667 0.75 0.8 0.83333 0.85714 0.875 0.88889 0.9
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!