photo

meihua


Aktiv seit 2013

Followers: 0   Following: 0

Nachricht

Statistik

MATLAB Answers

4 Fragen
3 Antworten

RANG
4.441
of 300.343

REPUTATION
12

BEITRÄGE
4 Fragen
3 Antworten

ANTWORTZUSTIMMUNG
25.0%

ERHALTENE STIMMEN
2

RANG
 of 20.926

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 168.172

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
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.

fast 12 Jahre vor | 0

Beantwortet
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

fast 12 Jahre vor | 2

| akzeptiert

Frage


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}; ...

fast 12 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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)...

etwa 12 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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...

etwa 12 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
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 ...

etwa 12 Jahre vor | 0

| akzeptiert

Frage


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);...

etwa 12 Jahre vor | 1 Antwort | 0

1

Antwort