How can i use linspace with different intervals?

3 次查看(过去 30 天)
The value for x is 0 to 1. I want to use 0 to 0.9 with interval 0.01 and 0.9 to 1 with interval 0.99.
I used linspcae like this but this is giving me an error.
x = linspace(0,0.9,91;0.9,1,91);
How can i use different interval in linspace? Any idea?

采纳的回答

Rik
Rik 2020-5-8
You will have to call linspace multiple times:
part1=linspace(0,0.9,91);
part2=linspace(0.9,1,91);
x = [part1,part2(2:end)];

更多回答(1 个)

Steven Lord
Steven Lord 2020-5-8
If you know both endpoints and the interval, linspace isn't the best tool for the job. The colon operator (:) is.
x = 0:0.1:0.9;
Rik's suggestion of creating each piece independently and combining them afterwards, but use colon instead of linspace.
  5 个评论
Mahrosh
Mahrosh 2020-5-8
Thankyou steven for further explanation. I want to ask there is any effect on my calculation If I used number in decimal instead of intergers?
Rik
Rik 2020-5-9
There isn't any difference in the result, only in how you read the code as a human.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by