What it is means 'Params = zeros(15,3); Params(15,3) = 1;'
Mostrar comentarios más antiguos
Hi all...
Can anyone help me..what is the function of
Params = zeros(15,3); Params(15,3) = 1;
thanks
Respuesta aceptada
Más respuestas (1)
You can find this outby yourself: Simply omit the trailing semicolons to let Matlab show the results, when you type this inot the command line:
Params = zeros(15,3)
Params(15,3) = 1
4 comentarios
noor shahida
el 7 de Jun. de 2013
Jan
el 13 de Jun. de 2013
@noor: I do not understand the question. "Params" is not a function, but the name of a variable. You can use any other name, which consists of less than 64 characters and does not start with a number or an underscore.
Walter Roberson
el 13 de Jun. de 2013
... and which consists of letters chosen from A to Z or a to z or the 10 digits or the underscore.
noor shahida
el 17 de Jun. de 2013
Categorías
Más información sobre Mathematics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!