Displaying 10 results from an estimated 10 matches for "wjgoh".
Did you mean:
joh
2006 Nov 24
1
Re : View code of function
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?...
Nom : non disponible
Url : https://stat.ethz.ch/pipermail/r-help/attachments/20061124/c670126c/attachment.pl
2006 Dec 02
1
Trouble passing arrays to C code
Hello,
I'm having more trouble with interfacing with C code. I have a
function in C that will return the result of its computation as 3
arrays. The signature of the function is as follows:
void lorenz_run(double x0, double y0, double z0, double h, int steps,
double *res_x, double *res_y, double *res_z)
The function works, as I've tested it from within C itself and the
results
2006 Nov 02
2
Simple question about Lists
Hello,
I know this must be a very simple problem, but I can't work it out
from the documentation that is available. I've got a list of data I
would like to plot (the weights of a single neuron that was trained
using the neural package). The problem I'm encountering is that this
set of weights, are in the form of a list.
> network$weigth[1]
[[1]]
[,1]
[1,]
2006 Nov 22
1
What training algorithm does nnet package use?
Greetings list,
I've just swapped from the "neural" package to the "nnet" package and
I've noticed that the training is orders of magnitude faster, and the
results are way more accurate.
This leads me to wonder, what training algorithm is "nnet" using? Is
it a modification on the standard backpropagation? Or a completely
different algorithm? I'm
2006 Nov 30
0
Preventing early stopping in neural network (nnet package)
Hello there,
I'm back again with another question about the neural network
package. I'm having trouble getting the network to run for the
maximum number of iterations. It always stops early, usually after
100 iterations claiming to have converged at an answer.
Now, for my purposes I want it to run for the entire number of
epochs, and I'm been looking at modifying the abstol
2006 Oct 04
1
Some questions about plotting with R
Greetings list,
I'm currently in the process of migrating some Matlab code to R. It's
going well, but I'm running into trouble with plotting. There are a
few questions I have.
1) Is there any way to do a 3D line plot in R? This would be what the
Matlab function plot3 does.
2) I would like to create 3 separate plots. With Matlab, this is done
by doing ...
figure;
plot...
2007 Apr 12
2
Tweaking my plot of matrix as image
Greetings list,
I have a rectangular 20 x 20 matrix with values in the range of [0 ,
1]. I'd like to plot it as an image. To that end, I have used the
image() function that seems to do what I want. Now, I just want to
tweak it to look perfect. So here is my question:
At the moment, the values of the axis range from [0, 1]. I want it to
show the row and column of the matrix. How do I
2006 Nov 02
3
Complex plotting problem
Hello,
I would like to make a plot (preferably lines, but points will do
too), where the line segment changes color depending on the value of
the y-axis. For example, let's suppose the y-axis range is from -1 to
1. Points close to -1 would be colored blue, while points close to 1
will be colored red. Points in between will be varying degrees of
blue/red depending on how close they
2006 Oct 05
2
A statement over multiple lines (i.e. the ... feature in Matlab)
Hello again list,
I thought I'd start a new thread, seeing as it's completely different
from my previous question. Some functions I have written require many
parameters, and so do not fit nicely into an 80 column width display.
This is usually avoided, by spreading that particular statement over
a few lines. This is something that I do in Matlab with the following:
myFunc(
2006 Oct 05
11
Block comments in R?
Hello list,
Is there any way to perform a block comment in R? In C++, anything in
between a /* and */ is considered a comment, and it allows
programmers to comment out chunks of code for testing and debugging.
Is there such a feature in R?
Cheers,
Wee-Jin