Create an "equispaced" vector that includes a number of given points
12 ビュー (過去 30 日間)
古いコメントを表示
Alejandro Fernández
2021 年 4 月 22 日
コメント済み: Alejandro Fernández
2021 年 4 月 22 日
Hi, I was wondering how I could make a vector that I have obtained with linspace for example of the style:
v = linspace(0,7,8)
So v = [0 1 2 3 4 5 6 7]
And given another vector in the variable a such as could be:
a = [1 1.5 4 6.2]
Introduce the elements that are not in the vector v in the position so that the result is increasing.
So the result should be:
result = [0 1 1.5 2 3 4 5 6 6.2 7]
3 件のコメント
Scott MacKenzie
2021 年 4 月 22 日
I think we answered at the same time. If I understand correctly, the second argument ('first') is only needed if the indices are also needed.
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!