Is it possible to go down a row and still run the code?

5 views (last 30 days)
לק"י
Hello,
I have a code line when building a cell array that will contain alot of values. the code is going way to the right and it is very difficult to change it and look at it. is it possible to make it go down a line and still be able to run it?
If I'm not wrong, pressing space and going down a line in python will not do anything and the code will be read. is there something like this in matlab?
the code line:
analysisdata(1:17,1)={'Image name', 'Cell mask number','Total masked out pixels', 'Masked thrasholded pixels > 1.5', 'Masked thrasholded pixels > 2','Masked thrasholded pixels > 2.5', 'Masked thrasholded pixels > 3','Masked thrasholded pixels > 4','Masked thrasholded pixels > 5', 'Masked thrasholded pixels > 6','Ratio of pixels > 1.5 from toal masked out pixels', 'Ratio of pixels > 2 from toal masked out pixels','Ratio of pixels > 2.5 from toal masked out pixels','Ratio of pixels > 3 from toal masked out pixels','Ratio of pixels > 4 from toal masked out pixels','Ratio of pixels > 5 from toal masked out pixels','Ratio of pixels > 6 from toal masked out pixels'};
how it looks in the screen:
How I want it to look:
Thank you!
Amit.

Answers (1)

Chunru
Chunru on 18 Jul 2023
Use ... at the end of line for line continuation
analysisdata(1:17,1)={'Image name', 'Cell mask number', ...
'Total masked out pixels', 'Masked thrasholded pixels > 1.5', ...
'Masked thrasholded pixels > 2','Masked thrasholded pixels > 2.5', ...
'Masked thrasholded pixels > 3','Masked thrasholded pixels > 4', ...
'Masked thrasholded pixels > 5', 'Masked thrasholded pixels > 6', ...
'Ratio of pixels > 1.5 from toal masked out pixels', ...
'Ratio of pixels > 2 from toal masked out pixels', ...
'Ratio of pixels > 2.5 from toal masked out pixels', ...
'Ratio of pixels > 3 from toal masked out pixels', ...
'Ratio of pixels > 4 from toal masked out pixels', ...
'Ratio of pixels > 5 from toal masked out pixels', ...
'Ratio of pixels > 6 from toal masked out pixels'}
analysisdata = 17×1 cell array
{'Image name' } {'Cell mask number' } {'Total masked out pixels' } {'Masked thrasholded pixels > 1.5' } {'Masked thrasholded pixels > 2' } {'Masked thrasholded pixels > 2.5' } {'Masked thrasholded pixels > 3' } {'Masked thrasholded pixels > 4' } {'Masked thrasholded pixels > 5' } {'Masked thrasholded pixels > 6' } {'Ratio of pixels > 1.5 from toal masked out pixels'} {'Ratio of pixels > 2 from toal masked out pixels' } {'Ratio of pixels > 2.5 from toal masked out pixels'} {'Ratio of pixels > 3 from toal masked out pixels' } {'Ratio of pixels > 4 from toal masked out pixels' } {'Ratio of pixels > 5 from toal masked out pixels' } {'Ratio of pixels > 6 from toal masked out pixels' }

Categories

Find more on Author Block Masks 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!