Displaying 2 results from an estimated 2 matches for "getrdata".
Did you mean:
get_data
2011 Aug 26
0
Problem in calling R functions from Matlab
...://www.mathworks.com/matlabcentral/fx_files/5051/1/content/Rdemo.html
evalR('demo("persp")') works well. Also the arithmetic functions all work well:
a = 1:10;
putRdata('a',a)
b = evalR('a^2')
evalR('b <- a^2');
evalR('c <- b + 1');
c = getRdata('c')
However ?Now copy the volcano data into MATLAB? section and all related sessions therefore don?t work.
>> volcano = getRdata('volcano')
volcano =???? []
>> size(volcano)
ans =???? 0???? 0
>> surf(volcano);
(see the attached figure:surf_volcano_output.jp...
2009 Mar 09
0
Usar R desde Matlab
.... Un ejemplo sería este:
>> openR
>> a = round(10*rand(4))
a =
10 9 8 9
2 8 4 7
6 5 6 2
5 0 8 4
>> putRdata( ''a'', a )
>> evalR( ''v <- apply( a, 1, mean )'' )
>> getRdata( ''v'' )
ans =
9.0000 5.2500 4.7500 4.2500
>> closeR
Se podrían generar archivos .m que llamen a funciones de R y devuelvan el
resultado a Matlab.
He visto que hay dos formas de conectarlo, una es esta, y otra mediante una
interfaz que se llama MEX. Quería p...