How do I add spaces in MATLAB output?

  • Context: MATLAB 
  • Thread starter Thread starter Spectre32
  • Start date Start date
  • Tags Tags
    Matlab
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
4 replies · 11K views
Spectre32
Messages
136
Reaction score
0
I gott add spaces into this output, how in sweet gods name do i do this? Here is my code:

disp( '' )
disp( 'Solution to workshop 5, exercise 3 ')
disp( 'Calculate the volume of a piece of iron by determining the amount of')
disp( 'water displaced as it is submerged.')



Thanks
 
Physics news on Phys.org
I'm confused what you're asking for...

what do you want the output to look like?
 
Well when it's displayed.. it looks like this:

Solution to workshop 5, exercise 3
Calculate the volume of a piece of iron by determining the amount of
water displaced as it is submerged.

I want it to look like this:

Solution to workshop 5, exercise 3

Calculate the volume of a piece of iron by determining the amount of

water displaced as it is submerged.

---with space(s) inbetween the lines. I can't figure out how to do this
 
Try this:

Code:
for a=1
   disp('a')
   disp(' ')
   disp(' ')
   disp('b')
end

It should output
Code:
a


b
 
AH! Score. Thanks man, it's workin now!