How to plot two 1-D array 's

조회 수: 3 (최근 30일)
Phillip Creemers
Phillip Creemers 2012년 3월 15일
I have two 1-D array's of 3200x1 one is L, that represents the light intensety and zadj that represent the error. I now want to draw a graf that shows me the error in function of the light intensety. I also want the function through these data points. The array's are not sorted by value. Can i do this with a interpolation ?
Kind regards

채택된 답변

Walter Roberson
Walter Roberson 2012년 3월 15일
scatter(L, zadj);
or
[Lsort, Lorder] = sort(L);
plot(Lsort, zadj(Lorder));
"The function through these data points" is not well defined. There are literally an infinite number of different functions that perfectly fit any finite set of data points.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by