photo

Xiaotong WU


Last seen: 14 days ago Active since 2021

Followers: 0   Following: 0

Learning and practicing matlab and appdesinger now. Any discussion and suggestion are welcomed.

Programming Languages:
MATLAB

Statistics

All
MATLAB Answers

2 Questions
1 Answer

File Exchange

1 File

Cody

0 Problems
1 Solution

RANK
264,416
of 300,584

REPUTATION
0

CONTRIBUTIONS
2 Questions
1 Answer

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
0

RANK
20,008 of 21,030

REPUTATION
0

AVERAGE RATING
0.00

CONTRIBUTIONS
1 File

DOWNLOADS
1

ALL TIME DOWNLOADS
3

RANK
106,449
of 169,723

CONTRIBUTIONS
0 Problems
1 Solution

SCORE
20

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • First Review
  • First Answer
  • Thankful Level 2
  • MATLAB Mini Hack Participant
  • First Submission
  • Treasure Hunt Participant
  • Solver
  • Explorer

View badges

Feeds

View by

Answered
新手:题目是“生成相量 A,其元素为区间[1,999]内的整数,然后找出 A 中能被 13 整除且 大于 500 的数。”
用来把筛选的结果存在C向量里,代码有点冗余,可以参考: C=[]; for i=500:999 if rem(i,13)==0 C=[C;i]; end end disp(C)

3 years ago | 0

Question


How to show the cross cursor (instead of arrow) when clicking on the UIAxes in the App designer? How to save several coordinates when clicking for times via upButtonfunc?
I wanna obtain the coordinates through the UIFigureWindowButtonUp function. While only one point can be check when clicking once...

3 years ago | 1 answer | 0

1

answer

Question


How to obtain coordinate using 'ginput' in the UIaxis when coding in Appdesigner
When assigning the item in the Appdesigner, for example, [x,y]=ginput(app.UIaxis,2); it reminds the extra parameters. So how t...

3 years ago | 1 answer | 0

1

answer