photo

meihua


2013년부터 활동

Followers: 0   Following: 0

메시지

통계

MATLAB Answers

4 질문
3 답변

순위
4,461
of 301,219

평판
12

참여
4 질문
3 답변

답변 채택
25.0%

획득한 표
2

순위
 of 21,193

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 173,467

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Bar plot with multidimensional matrix-->columns of different color
[n,x]=hist(Collectb,5); for a=1:8 mn(:,a)=n(:,a)/sum(n(:,a)); end bar(x,mn,'hist'); Fixed it.

12년 초과 전 | 0

답변 있음
How to find local maxima in plot(X,Y)?
I've found this peakdet.m script to be useful: http://www.billauer.co.il/peakdet.html

12년 초과 전 | 2

| 수락됨

질문


Bar plot with multidimensional matrix-->columns of different color
trial_type={'apples' 'oranges' 'banana' 'pears'}; for choice=1:4 trial_type_current = trial_type{1,choice}; ...

12년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Stretch peak to peak y-values to plot
figure(1) x =[0 pi/2 pi 3*pi/2 2*pi 5*pi/2 3*pi]; y = [0 1 0 -1 0 1 0]; bcs = csapi(x,y); xx=linspace(0,3*pi,1000)...

12년 초과 전 | 답변 수: 0 | 0

0

답변

질문


Smoothing piecewise sin functions
I wrote a function that pieces together two different sine functions. The positive curves are always sin(x) but the negative cur...

12년 초과 전 | 답변 수: 2 | 0

2

답변

답변 있음
I am trying to calculate mean of all the columns in my matrix. Help me please?
>> a=[1 2 3; 1 2 3] a = 1 2 3 1 2 3 >> mean(a,1) ans = 1 ...

12년 초과 전 | 0

| 수락됨

질문


Series of subplots that are continuous through multiple figures
nrows = 8; ncols = 5; currentPlot = 1; for i = 1:size(input,1) subplot(nrows, ncols, currentPlot);...

12년 초과 전 | 답변 수: 1 | 0

1

답변