How to get the value of interpolated data for 2D table in matlab
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi,
Below is the table I want to read in matlab and get the values for the specified x and y.
Also, if the value of x and y is in between the specified values, how do I get the interpolated value. Please let me know how to code this
thanks in advance
댓글 수: 0
답변 (2개)
Kshittiz Bhardwaj
2022년 7월 1일
편집: Kshittiz Bhardwaj
2022년 7월 1일
Hello Harish,
You can use the readTable function to import the excel file in matlab as a table
Eg: T = readtable(filename)
refer: readTable documentation
For interpolating values, you can use the interp1 function and it would do the interpolation for you
refer: interp1 documentation
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!