result is displayed in the same line
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Voss
el 12 de Abr. de 2024
Use \n instead of /n.
\n means new line; /n means literally /n.
2 comentarios
Voss
el 12 de Abr. de 2024
You're welcome! If this answer worked, please "Accept" it. Thanks!
Mastering anything takes time, but to get more comfortable using MATLAB, I am told the Onramp is a good place to start:
Also, there is a Discussion thread where people talk about how they learned MATLAB; you may find useful ideas there:
My personal advice for getting better at MATLAB coding would be:
- Write MATLAB code
- Try to run it
- If there is an error message, read and understand what the error message is telling you (ask for help interpreting the error message if you need to). Read the documentation of the functions related to the error.
- Modify your code based on the error
- Repeat steps 2-4 until there are no error messages
- Check whether the results you got are what you expected. If not, read the documentation of the functions you are using and make sure your code is doing what you intended (most likely it's not). Again, ask for help if needed.
- When the results are as expected, return to step 1 to write more MATLAB code and repeat the process.
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!