result is displayed in the same line
1 view (last 30 days)
Show older comments
0 Comments
Accepted Answer
Voss
on 12 Apr 2024
Use \n instead of /n.
\n means new line; /n means literally /n.
2 Comments
Voss
on 12 Apr 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.
More Answers (0)
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!