9 lines
103 B
Text
9 lines
103 B
Text
x = rand(2,4);
|
|
y = zeros(2,4);
|
|
for (i in 1:2)
|
|
{
|
|
for (j in 1:4)
|
|
{
|
|
y[i;j] = sin( x[i;j] );
|
|
}
|
|
}
|