Community Profile

photo

uu tsi


2016년부터 활동

Followers: 0   Following: 0

통계

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

배지 보기

Feeds

보기 기준

질문


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]

7년 초과 전 | 답변 수: 3 | 0

3

답변

답변 있음
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)

7년 초과 전 | 1

| 수락됨

답변 있음
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(...

7년 초과 전 | 3

| 수락됨

답변 있음
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

7년 초과 전 | 0

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

7년 초과 전 | 0