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

17 ビュー (過去 30 日間)
Amit Ifrach
Amit Ifrach 2023 年 7 月 18 日
回答済み: Chunru 2023 年 7 月 18 日
לק"י
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.

回答 (1 件)

Chunru
Chunru 2023 年 7 月 18 日
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' }

カテゴリ

Help Center および File ExchangeAuthor Block Masks についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by