photo

Laurens Bakker


Simon Fraser University

Attivo dal 2012

Followers: 0   Following: 0

Messaggio

Professional Interests: Cellular Automata and Social Network Analysis

Statistica

MATLAB Answers

0 Domande
18 Risposte

RANK
3.788
of 300.781

REPUTAZIONE
14

CONTRIBUTI
0 Domande
18 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
1

RANK
 of 21.088

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 171.031

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

  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
How to Normalize variables?
Hi Matt, Normalisation just means: "change the numbers so that both range from 0 to 1". You can do that by subtracting the mi...

quasi 14 anni fa | 0

Risposto
Calculating Hamming Distance?
Hi Alex, If you have the Statistics toolbox, you can use the pdist function. Cheers, Laurens

quasi 14 anni fa | 0

Risposto
How to reduce the time?
Hi Shifat, the base MATLAB distribution has a function for this: P = dec2bin( fix(s) ); where fix() cuts off the frac...

quasi 14 anni fa | 0

Risposto
parfor using
Hi Yildirim, There is considerable overhead in gathering the data back into a single variable. I removed the assignments and ...

quasi 14 anni fa | 0

| accettato

Risposto
Array of objects - speed issues
Hi Gabriel, I have had the same experience of MATLAB slowing down when using OO design, particularly with handles. I've never...

quasi 14 anni fa | 0

Risposto
basic question on how to find mean distance between an interior point and all of the vertex points of the convex hull
Hi Andrew, If you have the Statistics toolbox, use the pdist function to compute the distance between a vector of points and ...

quasi 14 anni fa | 0

Risposto
overlapped objects counting in matlab
Hi Faisal, I'm not sure if MATLAB is the right tool for this. Take a look at <http://boost-geometry.203548.n3.nabble.com/inte...

quasi 14 anni fa | 0

Risposto
reordering a matrix
Hi Ramya, First, you re-order the known image according to the sorted order column by column: for i=1:size(avgtar,2) ...

quasi 14 anni fa | 0

Risposto
Possible to come out with a adjacency matrix?
B is the an adjacency matrix.

quasi 14 anni fa | 0

Risposto
Tab completion produces no filenames (Mac OS)
Hi Eric, There is no tab completion on strings because they are literals. MATLAB does not know that the string you are typing...

quasi 14 anni fa | 0

Risposto
Addition of time series' values in array
Why not just use a for loop? sum = zeros( size(OBJECTS(1).PROP.Data ); for obj=OBJECTS sum = sum + obj.PROP.Data;...

quasi 14 anni fa | 0

Risposto
Function handle invoking Java reports syntax error?
Hi Ahmed, anonymous functions are not allowed to store any data, and accessing a field of java.io.File(d) probably implicitly...

quasi 14 anni fa | 0

Risposto
How can I find the coefficient of trasfer function in detail? (more than 4 unit)
Hy Hyetan, sys2 is an object that has fields num and den, for numerator and denominator, so sys2.num{:}(2) is the val...

quasi 14 anni fa | 1

| accettato

Risposto
about function argument
Yes you can. MATLAB is not a typed language, so you could write something like: function [outputs] = foo ( myNeuralNet, ot...

quasi 14 anni fa | 0

| accettato

Risposto
Minimizing the Maximum Value of an Array
This seems like a general constrained optimisation function. Since you have already formulated your objective function, you coul...

quasi 14 anni fa | 0

Risposto
Calculate Service Area For Fire Station Bye use Shortest Path
Service areas by access times are usually calculated as voronoi diagrams (see the voronoi() function) or by a multi-source bread...

quasi 14 anni fa | 0

Risposto
k-means clustering
MATLAB actually has a built-in clustering function called kmeans. Assuming you can reshape your data to match the format expecte...

quasi 14 anni fa | 0

Risposto
JMI ?
Please consult <www.mathworks.com/products/javabuilder/> for details on converting matlab programmes to JAVA. JMI is not directl...

quasi 14 anni fa | 0