Displaying 2 results from an estimated 2 matches for "putrdata".
Did you mean:
putdata
2009 Mar 09
0
Usar R desde Matlab
...uete en el directorio de trabajo y podremos ver unas funciones para
enviar variables a r y trabajar 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....
2011 Aug 26
0
Problem in calling R functions from Matlab
...100
c =???? 2???? 5??? 10??? 17??? 26??? 37??? 50??? 65??? 82?? 101
I then tried running the Rdemo available on http://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 =????...