- Figure — создавай музыку вместе с Windows 10
- figure
- Syntax
- Description
- Examples
- Change Figure Size
- Specify Figure Title
- Working with Multiple Figures Simultaneously
- Input Arguments
- f — Target figure Figure object
- n — Target figure number scalar integer value
- Name-Value Pair Arguments
- ‘Name’ — Name » (default) | character vector | string scalar
- ‘Color’ — Background color RGB triplet | hexadecimal color code | ‘r’ | ‘g’ | ‘b’ | .
- ‘Position’ — Location and size of drawable area [left bottom width height]
- figure
- Syntax
- Description
- Examples
- Change Figure Size
- Specify Figure Title
- Working with Multiple Figures Simultaneously
- Input Arguments
- f — Target figure Figure object
- n — Target figure number scalar integer value
- Name-Value Pair Arguments
- ‘Name’ — Name » (default) | character vector | string scalar
- ‘Color’ — Background color RGB triplet | hexadecimal color code | ‘r’ | ‘g’ | ‘b’ | .
- ‘Position’ — Location and size of drawable area [left bottom width height]
Figure — создавай музыку вместе с Windows 10
Figure Windows 10 — это музыкальное приложение, которое дает возможность создавать музыку, как собственную, так и ремиксы совместно с другими музыкантами. Это приложение является топовым на Windows 10. С приложением можно работать в удобное для вас время и в удобном месте: на перерывах, в очереди, в общественном транспорте и так далее. В Figure есть возможность делиться своим творчеством на Propellerhead. Также можно будет увидеть, когда другие пользователи программы будут пользоваться вашими идеями.
Основные преимущества этого приложения:
- возможность делиться с другими пользователями треками и переделывать их музыку;
- создание песен с ударными, басами и мелодией;
- простота использования без больших навыков;
- проигрывание одним движением пальца;
- создание музыки в любое время.
Управление программой осуществляется очень просто и легко через сенсорный интерфейс. Подбирайте нужные вам настройки ударных, басов, мелодии и слушайте что выходит. Скачать Figure на Windows 10 можно чуть ниже.
Платформа: Windows 10, Windows 10 Mobile
Разработчик: Allihoopa
Размер: 40 МБ
Цена: бесплатно
СКАЧАТЬ |
Поделиться «Figure — создавай музыку вместе с Windows 10»
figure
Create figure window
Syntax
Description
figure creates a new figure window using default property values. The resulting figure is the current figure.
figure( Name,Value ) modifies properties of the figure using one or more name-value pair arguments. For example, figure(‘Color’,’white’) sets the background color to white.
f = figure( ___ ) returns the Figure object. Use f to query or modify properties of the figure after it is created.
figure( f ) makes the figure specified by f the current figure and displays it on top of all other figures.
figure( n ) finds a figure in which the Number property is equal to n , and makes it the current figure. If no figure exists with that property value, MATLAB ® creates a new figure and sets its Number property to n .
Examples
Change Figure Size
Create a default figure.
Get the location, width, and height of the figure.
This means that the figure window is positioned 680 pixels to the right and 558 pixels above the bottom left corner of the primary display, and is 560 pixels wide and 420 pixels tall.
Halve the figure width and height by adjusting the third and fourth elements of the position vector.
Specify Figure Title
Create a figure, and specify the Name property. By default, the resulting title includes the figure number.
Specify the Name property again, but this time, set the NumberTitle property to ‘off’ . The resulting title does not include the figure number.
Working with Multiple Figures Simultaneously
Create two figures, and then create a line plot. By default, the plot command targets the current figure.
Set the current figure to f1 , so that it is the target for the next plot. Then create a scatter plot.
Input Arguments
f — Target figure
Figure object
Target figure, specified as a Figure object.
n — Target figure number
scalar integer value
Target figure number, specified as a scalar integer value. When you specify this argument, MATLAB searches for an existing figure in which the Number property is equal to n . If no figure exists with that property value, MATLAB creates a new figure and sets its Number property to n . By default, the Number property value is displayed in the title of the figure.
Data Types: double
Name-Value Pair Arguments
Specify optional comma-separated pairs of Name,Value arguments. Name is the argument name and Value is the corresponding value. Name must appear inside single quotes ( ‘ ‘ ). You can specify several name and value pair arguments as Name1,Value1. NameN,ValueN .
Note
The properties listed here are only a subset. For a full list, see Figure Properties .
‘Name’ — Name
» (default) | character vector | string scalar
Name of the figure, specified as a character vector or a string scalar.
Example: figure(‘Name’,’Results’) sets the name of the figure to ‘Results’ .
By default, the name is ‘Figure n ‘ , where n is an integer. When you specify the Name property, the title of the figure becomes ‘Figure n : name ‘ . If you want only the Name value to appear, set IntegerHandle or NumberTitle to ‘off’ .
‘Color’ — Background color
RGB triplet | hexadecimal color code | ‘r’ | ‘g’ | ‘b’ | .
Background color, specified as an RGB triplet, a hexadecimal color code, a color name, or a short name. If you specify ‘none’ , the background color appears black on screen, but if you print the figure, the background prints as though the figure window is transparent.
For a custom color, specify an RGB triplet or a hexadecimal color code.
An RGB triplet is a three-element row vector whose elements specify the intensities of the red, green, and blue components of the color. The intensities must be in the range [0,1] ; for example, [0.4 0.6 0.7] .
A hexadecimal color code is a character vector or a string scalar that starts with a hash symbol ( # ) followed by three or six hexadecimal digits, which can range from 0 to F . The values are not case sensitive. Thus, the color codes ‘#FF8800’ , ‘#ff8800’ , ‘#F80’ , and ‘#f80’ are equivalent.
Alternatively, you can specify some common colors by name. This table lists the named color options, the equivalent RGB triplets, and hexadecimal color codes.
Color Name | Short Name | RGB Triplet | Hexadecimal Color Code | Appearance |
---|---|---|---|---|
‘red’ | ‘r’ | [1 0 0] | ‘#FF0000’ | |
‘none’ | Not applicable | Not applicable | Not applicable | No color |
Here are the RGB triplets and hexadecimal color codes for the default colors MATLAB uses in many types of plots.
RGB Triplet | Hexadecimal Color Code | Appearance | |||
---|---|---|---|---|---|
[0 0.4470 0.7410] | ‘#0072BD’ |
Element | Description |
---|---|
left | Distance from the left edge of the primary display to the inner left edge of the window. This value can be negative on systems that have more than one monitor. |
If the figure is docked, then this value is relative to the Figure panel within the MATLAB desktop.
If the figure is docked, then this value is relative to the Figure panel within the MATLAB desktop.
All measurements are in units specified by the Units property.
You cannot specify the figure Position property when the figure is docked.
In MATLAB Online™ , the bottom and left elements of the Position vector are ignored.
To place the full window, including the borders, title bar, menu bar, tool bars, use the OuterPosition property.
Note
The Windows ® operating system enforces a minimum window width and a maximum window size. If you specify a figure size outside of those limits, the displayed figure will conform to the limits instead of the size you specified.
figure
Create figure window
Syntax
Description
figure creates a new figure window using default property values. The resulting figure is the current figure.
figure( Name,Value ) modifies properties of the figure using one or more name-value pair arguments. For example, figure(‘Color’,’white’) sets the background color to white.
f = figure( ___ ) returns the Figure object. Use f to query or modify properties of the figure after it is created.
figure( f ) makes the figure specified by f the current figure and displays it on top of all other figures.
figure( n ) finds a figure in which the Number property is equal to n , and makes it the current figure. If no figure exists with that property value, MATLAB ® creates a new figure and sets its Number property to n .
Examples
Change Figure Size
Create a default figure.
Get the location, width, and height of the figure.
This means that the figure window is positioned 680 pixels to the right and 558 pixels above the bottom left corner of the primary display, and is 560 pixels wide and 420 pixels tall.
Halve the figure width and height by adjusting the third and fourth elements of the position vector.
Specify Figure Title
Create a figure, and specify the Name property. By default, the resulting title includes the figure number.
Specify the Name property again, but this time, set the NumberTitle property to ‘off’ . The resulting title does not include the figure number.
Working with Multiple Figures Simultaneously
Create two figures, and then create a line plot. By default, the plot command targets the current figure.
Set the current figure to f1 , so that it is the target for the next plot. Then create a scatter plot.
Input Arguments
f — Target figure
Figure object
Target figure, specified as a Figure object.
n — Target figure number
scalar integer value
Target figure number, specified as a scalar integer value. When you specify this argument, MATLAB searches for an existing figure in which the Number property is equal to n . If no figure exists with that property value, MATLAB creates a new figure and sets its Number property to n . By default, the Number property value is displayed in the title of the figure.
Data Types: double
Name-Value Pair Arguments
Specify optional comma-separated pairs of Name,Value arguments. Name is the argument name and Value is the corresponding value. Name must appear inside single quotes ( ‘ ‘ ). You can specify several name and value pair arguments as Name1,Value1. NameN,ValueN .
Note
The properties listed here are only a subset. For a full list, see Figure Properties .
‘Name’ — Name
» (default) | character vector | string scalar
Name of the figure, specified as a character vector or a string scalar.
Example: figure(‘Name’,’Results’) sets the name of the figure to ‘Results’ .
By default, the name is ‘Figure n ‘ , where n is an integer. When you specify the Name property, the title of the figure becomes ‘Figure n : name ‘ . If you want only the Name value to appear, set IntegerHandle or NumberTitle to ‘off’ .
‘Color’ — Background color
RGB triplet | hexadecimal color code | ‘r’ | ‘g’ | ‘b’ | .
Background color, specified as an RGB triplet, a hexadecimal color code, a color name, or a short name. If you specify ‘none’ , the background color appears black on screen, but if you print the figure, the background prints as though the figure window is transparent.
For a custom color, specify an RGB triplet or a hexadecimal color code.
An RGB triplet is a three-element row vector whose elements specify the intensities of the red, green, and blue components of the color. The intensities must be in the range [0,1] ; for example, [0.4 0.6 0.7] .
A hexadecimal color code is a character vector or a string scalar that starts with a hash symbol ( # ) followed by three or six hexadecimal digits, which can range from 0 to F . The values are not case sensitive. Thus, the color codes ‘#FF8800’ , ‘#ff8800’ , ‘#F80’ , and ‘#f80’ are equivalent.
Alternatively, you can specify some common colors by name. This table lists the named color options, the equivalent RGB triplets, and hexadecimal color codes.
Color Name | Short Name | RGB Triplet | Hexadecimal Color Code | Appearance |
---|---|---|---|---|
‘red’ | ‘r’ | [1 0 0] | ‘#FF0000’ | |
‘none’ | Not applicable | Not applicable | Not applicable | No color |
Here are the RGB triplets and hexadecimal color codes for the default colors MATLAB uses in many types of plots.
RGB Triplet | Hexadecimal Color Code | Appearance | |||
---|---|---|---|---|---|
[0 0.4470 0.7410] | ‘#0072BD’ |
Element | Description |
---|---|
left | Distance from the left edge of the primary display to the inner left edge of the window. This value can be negative on systems that have more than one monitor. |
If the figure is docked, then this value is relative to the Figure panel within the MATLAB desktop.
If the figure is docked, then this value is relative to the Figure panel within the MATLAB desktop.
All measurements are in units specified by the Units property.
You cannot specify the figure Position property when the figure is docked.
In MATLAB Online™ , the bottom and left elements of the Position vector are ignored.
To place the full window, including the borders, title bar, menu bar, tool bars, use the OuterPosition property.
Note
The Windows ® operating system enforces a minimum window width and a maximum window size. If you specify a figure size outside of those limits, the displayed figure will conform to the limits instead of the size you specified.