Create a linear graph with using some values

Hi everybody
I have a matrix, for ex a=[10 11 15 22 9 14] I want to create a linear graph using a's 2. and 5. values. Namely, peak points of new graph must be 11 and 9 and it must contain the same number of elements of "a" matrix.
How can i solve this problem?

1 件のコメント

Robert
Robert 2016 年 10 月 26 日
編集済み: Robert 2016 年 10 月 26 日
More information please so we can assist. What exactly are you trying to do? Are you trying to plot 2 and 5 against each element in the matrix? I don't understand what your trying to do

サインインしてコメントする。

 採用された回答

KSSV
KSSV 2016 年 10 月 27 日

1 投票

a=[10 11 15 22 9 14] ;
b = zeros(size(a)) ;
b(2) = a(2) ;
b(5) = a(5) ;
%%replace zeros of b with numbers less then 9 randomly
for i = 1:length(b)
if b(i)==0
b(i) = randi([1 9],1) ;
end
end
plot(b,'b')

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMathematics についてさらに検索

質問済み:

2016 年 10 月 26 日

回答済み:

2016 年 10 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by