Plotting in MatLab App Builder - no x values?
조회 수: 1 (최근 30일)
이전 댓글 표시
I am building an app in MatLab and have a UItable and a UIAxes. I finally got it to connect and plot what is on the table and update when the values in the table change, but ONLY Y values.
How can I plot my x and y values???
plot(app.UIAxes,y2); <- this is the piece of code that plots it
plot(app.UIAxes,x2, y2); does not work
댓글 수: 2
Sugar Daddy
2020년 7월 1일
insert a breakpoint at that line in code view and see if the size of x2 and y2 are same
채택된 답변
추가 답변 (1개)
SC
2020년 7월 1일
From my understanding, you are trying to plot 3 axes
Try using 3d plot, visit the following links to see how 3d plot works:
참고 항목
카테고리
Help Center 및 File Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
