Continue Long Statements on Multiple Lines Matlab

来源:互联网 发布:木门 erp 源码 编辑:程序博客网 时间:2024/04/30 07:56

This example shows how to continue a statement to the next line using ellipsis (...).

s = 1 - 1/2 + 1/3 - 1/4 + 1/5 ...      - 1/6 + 1/7 - 1/8 + 1/9;

Build a long character string by concatenating shorter strings together:

mystring = ['Accelerating the pace of ' ...             'engineering and science'];

The start and end quotation marks for a string must appear on the same line. For example, this code returns an error, because each line contains only one quotation mark:

mystring = 'Accelerating the pace of ...             engineering and science'

An ellipsis outside a quoted string is equivalent to a space. For example,

x = [1.23...4.56];

is the same as

x = [1.23 4.56];
0 0
原创粉丝点击