How do I plot YY from the excel file data?
조회 수: 1 (최근 30일)
이전 댓글 표시
Ashvinder Singh Gill Surmaish Singh Gill
2020년 5월 12일
댓글: Ashvinder Singh Gill Surmaish Singh Gill
2020년 5월 16일
I have data for different factors 1.4, 1.6 and 2.2. How do I plot YY for force reaction and keeping x-axis as displacement on the same chart? The pattern should be as shown in the figure but with yy plot so that the results are more visible.
Appreciate if anyone can assist me. Thank you!
댓글 수: 0
채택된 답변
KSSV
2020년 5월 12일
data = xlsread("Sample Excel Data.xlsx") ;
A = data(:,[1 3 5]) ; % pick 1, 3 , 5 column
K = A(1,:) ; % factors
A(1,:) = [] ;
plot(A)
댓글 수: 14
Ashvinder Singh Gill Surmaish Singh Gill
2020년 5월 13일
편집: Ashvinder Singh Gill Surmaish Singh Gill
2020년 5월 13일
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!