photo

uu tsi


Active since 2016

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

1 Question
4 Answers

File Exchange

6 Files

Cody

0 Problems
589 Solutions

RANK
2,999
of 300,364

REPUTATION
20

CONTRIBUTIONS
1 Question
4 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
4

RANK
14,143 of 20,934

REPUTATION
18

AVERAGE RATING
0.00

CONTRIBUTIONS
6 Files

DOWNLOADS
5

ALL TIME DOWNLOADS
182

RANK
340
of 168,407

CONTRIBUTIONS
0 Problems
589 Solutions

SCORE
4,670

NUMBER OF BADGES
12

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Cody Challenge Master
  • First Submission
  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer
  • Triathlon Participant
  • CUP Challenge Master
  • Speed Demon
  • Solver

View badges

Feeds

View by

Question


How to genneral a repeat array
I have a array a = [1, 2 , 3 ,4], I want to repeat every element 3 times. The result is [1,1,1,2,2,2,3,3,3,4,4,4]

9 years ago | 3 answers | 0

3

answers

Answered
How to change the linewidth of a curve in a graph by using code?
use *linewidth* x=linspace(0,2*pi); y=sin(x); plot(x, y, 'linewidth',2)

9 years ago | 1

| accepted

Answered
Sorting element pairs by differences?
the following is my code values = [1,2,1.5,1.9]; ss = nchoosek(values, 2); [~, idx] = sort(abs(diff(ss'))); res = ss(...

9 years ago | 3

| accepted

Answered
Data from multiple cells into one cell
I think you can use *end + 1* ex: a = {} while true a{end + 1} = rand(randi(5)) end

9 years ago | 0

Answered
How to determine if a segment lies on a polygon?
you can use *inpolygon* function to check if a point in a polygon.

9 years ago | 0