Statistica
MATLAB Answers
0 Domande
3 Risposte
RANK
7.616
of 297.046
REPUTAZIONE
6
CONTRIBUTI
0 Domande
3 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
1
RANK
of 157.776
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
Really easy one how to quickly repeat columns in an array
You can use the <https://www.mathworks.com/help/matlab/ref/kron.html Kronecker tensor product> a=1:10; kron(a',ones(1,10))...
Really easy one how to quickly repeat columns in an array
You can use the <https://www.mathworks.com/help/matlab/ref/kron.html Kronecker tensor product> a=1:10; kron(a',ones(1,10))...
oltre 6 anni fa | 0
Risposto
Finding number of data points in a single grid?
Atiqah, coordinates isn't defined.
Finding number of data points in a single grid?
Atiqah, coordinates isn't defined.
oltre 7 anni fa | 0
Risposto
How to generate second order best fit polynomial curve using MATLAB
Dan, You can do this using poly2 x=[100 200 300 400 500]'; y=[200 500 900 1400 2000]'; ft = fittype( 'poly2' )...
How to generate second order best fit polynomial curve using MATLAB
Dan, You can do this using poly2 x=[100 200 300 400 500]'; y=[200 500 900 1400 2000]'; ft = fittype( 'poly2' )...
oltre 7 anni fa | 1
| accettato