Matlab error using save

error using save can’t write file I have got this really strange error in matlab. When I try to run the command I get the error message, everything works fine. The the variable takes some space on the workspace, 165MB, but the I would guess that the size should not be an issue here. […]

Содержание

  1. error using save can’t write file
  2. 1 Answer 1
  3. Error using «Save» Command.
  4. Direct link to this question
  5. Direct link to this question
  6. Accepted Answer
  7. Direct link to this answer
  8. Direct link to this answer
  9. Direct link to this comment
  10. Direct link to this comment
  11. More Answers (0)
  12. See Also
  13. Categories
  14. Community Treasure Hunt
  15. How to Get Best Site Performance
  16. Americas
  17. Europe
  18. Asia Pacific
  19. Error using save function in app designer
  20. Direct link to this question
  21. Direct link to this question
  22. Accepted Answer
  23. Direct link to this answer
  24. Direct link to this answer
  25. More Answers (0)
  26. See Also
  27. Categories
  28. Products
  29. Release
  30. Community Treasure Hunt
  31. How to Get Best Site Performance
  32. Americas
  33. Europe
  34. Asia Pacific
  35. Matlab error using save
  36. Syntax
  37. Description
  38. Examples
  39. Save All Workspace Variables to MAT-File
  40. Save Specific Variables to MAT-File
  41. Save Data to ASCII File
  42. Save Structure Fields as Individual Variables
  43. Save Variables to Version 7.3 MAT-File
  44. Save Variables to MAT-File Without Compression
  45. Append Variable to MAT-File
  46. Append Variable to MAT-File Without Compression
  47. Input Arguments
  48. filename — Name of file ‘matlab.mat’ (default) | character vector | string scalar
  49. variables — Names of variables to save character vector | string scalar
  50. fmt — File format ‘-mat’ (default) | ‘-ascii’ | ‘-ascii’,’-tabs’ | ‘-ascii’,’-double’ | ‘-ascii’,’-double’,’-tabs’
  51. version — MAT-file version ‘-v7’ (default) | ‘-v7.3’ | ‘-v6’ | ‘-v4’

error using save can’t write file

I have got this really strange error in matlab. When I try to run the command

I get the error message,

everything works fine. The the variable takes some space on the workspace, 165MB, but the I would guess that the size should not be an issue here. Does anyone know why it does not work to save in v7 ?

For the one that want to confirm the size of the variable, I will add the whos information,

EDIT

The variable I try to save is a struct with plenty of fields. I have tried to save a 3 dimensional matrix of size 800 mb, which went through without problems.

1 Answer 1

This is not an exact match to your problem, but I received the same error message when trying to save to -v6 format. Matlab is supposed to issue an error when a variable type or size is not supported:

Matlab’s error checking seems to not be perfect, because there are certain situations (dependent on Matlab version and the particular variable type) that just fail all together with this not so helpful error message:

For example, saving a string with certain unicode characters with the ‘-v6’ option in Matlab r2015b in Linux produces the error, but Matlab r2016a in Windows does not. This is the output from my Matlab r2015b session:

Without having your specific variable to test with, but seeing that the error messages match, I suggest removing parts of your data structure until it will save in order to isolate the variable that is causing it to fail.

Источник

Error using «Save» Command.

Direct link to this question

Direct link to this question

0 Comments

Accepted Answer

Direct link to this answer

Direct link to this answer

1 Comment

More Answers (0)

See Also

Categories

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

An Error Occurred

Unable to complete the action because of changes made to the page. Reload the page to see its updated state.

Select a Web Site

Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .

You can also select a web site from the following list:

How to Get Best Site Performance

Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.

Americas

Europe

  • Belgium (English)
  • Denmark (English)
  • Deutschland (Deutsch)
  • España (Español)
  • Finland (English)
  • France (Français)
  • Ireland (English)
  • Italia (Italiano)
  • Luxembourg (English)
  • Netherlands (English)
  • Norway (English)
  • Österreich (Deutsch)
  • Portugal (English)
  • Sweden (English)
  • Switzerland
    • Deutsch
    • English
    • Français
  • United Kingdom (English)

Asia Pacific

  • Australia (English)
  • India (English)
  • New Zealand (English)
  • 中国
    • 简体中文 Chinese
    • English
  • 日本 Japanese (日本語)
  • 한국 Korean (한국어)

Accelerating the pace of engineering and science

MathWorks is the leading developer of mathematical computing software for engineers and scientists.

Источник

Error using save function in app designer

Direct link to this question

Direct link to this question

0 Comments

Accepted Answer

Direct link to this answer

Direct link to this answer

0 Comments

More Answers (0)

See Also

Categories

Products

Release

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

An Error Occurred

Unable to complete the action because of changes made to the page. Reload the page to see its updated state.

Select a Web Site

Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .

You can also select a web site from the following list:

How to Get Best Site Performance

Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.

Americas

Europe

  • Belgium (English)
  • Denmark (English)
  • Deutschland (Deutsch)
  • España (Español)
  • Finland (English)
  • France (Français)
  • Ireland (English)
  • Italia (Italiano)
  • Luxembourg (English)
  • Netherlands (English)
  • Norway (English)
  • Österreich (Deutsch)
  • Portugal (English)
  • Sweden (English)
  • Switzerland
    • Deutsch
    • English
    • Français
  • United Kingdom (English)

Asia Pacific

  • Australia (English)
  • India (English)
  • New Zealand (English)
  • 中国
    • 简体中文 Chinese
    • English
  • 日本 Japanese (日本語)
  • 한국 Korean (한국어)

Accelerating the pace of engineering and science

MathWorks is the leading developer of mathematical computing software for engineers and scientists.

Источник

Matlab error using save

Save workspace variables to file

Syntax

Description

save( filename ) saves all variables from the current workspace in a MATLAB ® formatted binary file (MAT-file) called filename . If filename exists, save overwrites the file.

save( filename , variables ) saves only the variables or fields of a structure array specified by variables .

save( filename , variables , fmt ) saves in the file format specified by fmt . The variables argument is optional. If you do not specify variables , the save function saves all variables in the workspace.

save( filename , variables , version ) saves to the MAT-file version specified by version . The variables argument is optional.

save( filename , variables , version ,’-nocompression’) saves the variables to the MAT-file without compression. The ‘-nocompression’ flag only supports MAT-file Version 7 (default) and Version 7.3. Therefore, you must specify version as ‘-v7’ or ‘-v7.3’ . The variables argument is optional.

save( filename , variables ,’-append’) adds new variables to an existing file. If a variable already exists in a MAT-file, then save overwrites it with the value in the workspace.

For ASCII files, ‘-append’ adds data to the end of the file.

To append to a Version 6 MAT-file, you must also include ‘-v6’ as an input argument.

save( filename , variables ,’-append’,’-nocompression’) adds new variables to an existing file without compression. The existing file must be a MAT-file Version 7 (default) or 7.3.

save filename is the command form of the syntax. Command form requires fewer special characters. You do not need to type parentheses or enclose the input in single or double quotes. Separate inputs with spaces instead of commas.

For example, to save a file named test.mat , these statements are equivalent:

You can include any of the inputs described in previous syntaxes. For example, to save the variable named X :

Do not use command form when any of the inputs, such as filename , are variables or strings.

Examples

Save All Workspace Variables to MAT-File

Save all variables from the workspace in a binary MAT-file, test.mat . If filename is a variable, use function syntax.

Otherwise, you also can use command syntax.

Remove the variables from the workspace, and then retrieve the data with the load function.

Save Specific Variables to MAT-File

Create and save two variables, p and q , to a file called pqfile.mat .

MATLAB® saves the variables to the file, pqfile.mat , in the current folder.

You also can use command syntax to save the variables, p and q .

Save Data to ASCII File

Create two variables, save them to an ASCII file, and then view the contents of the file.

The type function displays the contents of the file.

Alternatively, use command syntax for the save operation.

Save Structure Fields as Individual Variables

Create a structure, s1 , that contains three fields, a , b , and c .

Save the fields of structure s1 as individual variables in a file called newstruct.mat .

Check the contents of the file using the whos function.

Save Variables to Version 7.3 MAT-File

Create two variables and save them to a Version 7.3 MAT-file called example.mat .

You also can use command syntax for the save operation.

Save Variables to MAT-File Without Compression

Create two variables and save them, without compression, to a Version 7 or 7.3 MAT-file called myFile.mat .

Alternatively, use the command syntax for the save operation.

The ‘-nocompression’ flag facilitates a faster save for those variables that are larger than 2 GB or those that do not benefit from compression.

Append Variable to MAT-File

Save two variables to a MAT-file. Then, append a third variable to the same file.

View the contents of the MAT-file.

Create a new variable, a , and append it to the MAT-file.

View the contents of the MAT-file.

The variable, a , is appended to test.mat , without overwriting the previous variables, p and q .

Note

To append to a Version 6 MAT-file, specify both ‘-v6’ and ‘-append’ . For example, to save variable a to the file, test.mat , call:

Append Variable to MAT-File Without Compression

Save two variables to a MAT-file. Then, append a third variable, without compression, to the same file.

Create two variables A and B and save them to a MAT-file Version 7 or 7.3 . By default, the save function compresses variables A and B before saving them to myFile.mat .

View the contents of the MAT-file.

Create a new variable C and append it, without compression, to myFile.mat .

View the contents of the MAT-file.

Input Arguments

filename — Name of file
‘matlab.mat’ (default) | character vector | string scalar

Name of file, specified as a character vector or string scalar. If you do not specify filename , the save function saves to a file named matlab.mat .

If filename has no extension (that is, no period followed by text), and the value of format is not specified, then MATLAB appends .mat . If filename does not include a full path, MATLAB saves to the current folder. You must have permission to write to the file.

When using the command form of save , you do not need to enclose the input in single quotes. However, if filename contains a space, you must enclose the argument in single quotes. For example, save ‘filename withspace.mat’ .

Note

Do not use command form when filename is a string.

To save workspace variables to a MAT-file in a remote location, specify filename as a uniform resource locator (URL) of this form:

scheme_name :// path_to_file / my_file.mat

Based on your remote location, scheme_name can be one of the values in this table.

Remote Location scheme_name
Amazon S3™ s3
Windows Azure ® Blob Storage wasb , wasbs

The save function only supports saving version 7.3 MAT-files to remote locations.

For more information on setting up MATLAB to access your online storage service, see Work with Remote Data.

Example: ‘myFile.mat’

Example: ‘s3://bucketname/path_to_file/my_file.mat’

variables — Names of variables to save
character vector | string scalar

Names of variables to save, specified as character vectors or string scalars. When using the command form of save , you do not need to enclose the input in single quotes.

Note

Do not use command form when variables is a string.

variables can be in one of the following forms.

Form of variables Input Variables to Save
var1. varN Save the listed variables, specified as individual character vectors or strings.
Use the ‘*’ wildcard to match patterns. For example, save(‘filename.mat’,’A*’) saves all variables in the file that start with A .
‘-regexp’, expr1. exprN Save only the variables whose names match the regular expressions, specified as character vectors or strings. For example, save(‘filename.mat’,’-regexp’,’^Mon’,’^Tues’) saves only the variables in the file whose names begin with Mon or Tues .
‘-struct’, structName Store the fields of the scalar structure specified by structName as individual variables in the file. For example, save(‘filename.mat’,’-struct’,’S’) saves the scalar structure, S .
‘-struct’, structName, field1. fieldN Store the specified fields of the specified scalar structure as individual variables in the file. For example, save(‘filename.mat’,’-struct’,’S’,’a’,’b’) saves the fields S.a and S.b .
‘-struct’, structName ,’-regexp’, expr1. exprN Store only the fields whose names match the regular expressions, specified as character vectors or strings.

fmt — File format
‘-mat’ (default) | ‘-ascii’ | ‘-ascii’,’-tabs’ | ‘-ascii’,’-double’ | ‘-ascii’,’-double’,’-tabs’

File format, specified as one of the following. When using the command form of save , you do not need to enclose the input in single or double quotes, for example, save myFile.txt -ascii -tabs .

Binary MAT-file format.

Text format with 8 digits of precision.

Tab-delimited text format with 8 digits of precision.

Text format with 16 digits of precision.

Tab-delimited text format with 16 digits of precision.

For MAT-files, data saved on one machine and loaded on another machine retains as much accuracy and range as the different machine floating-point formats allow.

Use one of the text formats to save MATLAB numeric values to text files. In this case:

Each variable must be a two-dimensional double array.

The output includes only the real component of complex numbers.

MATLAB writes data from each variable sequentially to the file. If you plan to use the load function to read the file, all variables must have the same number of columns. The load function creates a single variable from the file.

If you specify a text format and any variable is a two-dimensional character array, then MATLAB translates characters to their corresponding internal ASCII codes. For example, ‘abc’ appears in a text file as:

When saving to a remote location, save only supports specifying fmt as ‘-mat’ .

Data Types: char | string

version — MAT-file version
‘-v7’ (default) | ‘-v7.3’ | ‘-v6’ | ‘-v4’

MAT-file version, specified as one of the following. When using the command form of save , you do not need to enclose the input in single or double quotes.

Value of fmt File Format
‘-mat’

Saving and loading parts of variables, and all Version 7 features. Version 7.3 also supports saving variables without compression using the ‘-nocompression’ option.

Unicode ® character encoding, which enables file sharing between systems that use different default character encoding schemes, and all Version 6 features. Version 7 also supports saving variables without compression using the ‘-nocompression’ option.

N-dimensional arrays, cell arrays, structure arrays, variable names longer than 19 characters, and all Version 4 features.

Two-dimensional double , character, and sparse arrays.

Value of version Loads in MATLAB Versions Supported Features Compression Maximum Size of Each Variable
‘-v7.3’ 7.3 (R2006b) or later Yes (default) ≥ 2 GB on 64-bit computers
‘-v7’ 7.0 (R14) or later Yes (default) 2^31 bytes per variable
‘-v6’ 5 (R8) or later No 2^31 bytes per variable
‘-v4’ All No 100,000,000 elements per array, and 2^31 bytes per variable

If any data items require features that the specified version does not support, MATLAB does not save those items and issues a warning. You cannot specify a version later than your current version of MATLAB software.

Note

Version 7.3 MAT-files use an HDF5 based format that requires some overhead storage to describe the contents of the file. For cell arrays, structure arrays, or other containers that can store heterogeneous data types, Version 7.3 MAT-files are sometimes larger than Version 7 MAT-files.

To view or set the default version for MAT-files, go to the Home tab and in the Environment section, click Preferences. Select MATLAB > General > MAT-Files and then choose a MAT-file save format option.

Источник

Сообщения без ответов | Активные темы | Избранное

 

Ошибка сохранения .mat файла в MATLAb

Сообщение03.04.2015, 18:09 


03/04/15
4

Выдает ошибку при сохранении .mat файла. Подскажите что это может быть?:
>> savefile = ‘test001.mat’;
>> K=2500;
>> Z=ones(1,K);
>> k1=fopen(‘C:k1.txt’,’rt’);
>> [Z L]=fscanf(k1,’%f’,2500);
>> save(savefile,’Z’)
??? Error using ==> save
Unable to write file test001.mat: permission denied.

а в случае:
» diary d02-02-10.txt
» al = 3;
» а2 = 2.5;
» а3 = al + a2
» а3 =
» 5.5000
» save work02-02-10
» quit
(взято Урок 4 — Файлы в matlab. Сохранение рабочей среды) то ошибка уже после ввода первой строчки.Что я делаю не так???
>> diary d02-02-10.txt
??? Error using ==> diary
d03-04-15.txt: Cannot open file: permission denied.

Профиль  

Geen 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение03.04.2015, 18:43 

Заслуженный участник
Аватара пользователя


01/09/13
3343

укажите полный путь к файлу; в такой папке, куда Вы можете писать
или
измените «директорию по умолчанию» на такую папку, куда Вы можете писать

Профиль  

lalolo 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение03.04.2015, 20:16 


03/04/15
4

укажите полный путь к файлу; в такой папке, куда Вы можете писать
или
измените «директорию по умолчанию» на такую папку, куда Вы можете писать

1)пыталась указать в save(savefile,’Z’) еще и путь куда сохранятьне получилось,может правда неправильно писала
>>save(savefile ‘D:test001.mat’,’Z’) — тоже ошибка
2)измените «директорию по умолчанию» на такую папку, куда Вы можете писать-не знаю как?

Профиль  

Geen 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение03.04.2015, 20:29 

Заслуженный участник
Аватара пользователя


01/09/13
3343

save ‘D:test001.mat’
так работает?

Профиль  

dsge 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение03.04.2015, 20:30 

Заслуженный участник
Аватара пользователя


05/08/14
1564

Может быть, что Вы сохраняете файл когда открыт файл с тем же названием.

Профиль  

lalolo 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение03.04.2015, 22:21 


03/04/15
4

save ‘D:test001.mat’
так работает?

да, спасибо так вроде получилось!!!!!!! :D

Профиль  

Geen 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение04.04.2015, 00:44 

Заслуженный участник
Аватара пользователя


01/09/13
3343

Совет, чем всякие уроки, прочитайте лучше хелп — он у них очень хороший…

Профиль  

ewert 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение04.04.2015, 01:19 

Заслуженный участник


11/05/08
32139

(Оффтоп)

прочитайте лучше хелп — он у них очень хороший…

Он был хорош несколько лет назад — когда уже был и менюшный, и ещё сохранялся традиционный терминальный. Но вот позавчера со студентами нечаянно обнаружили, что терминальный они зачем-то испоганили: по команде help fft

выдалось нечто совершенно невразумительное, хотя ещё в 2009-й версии всё было вполне вменяемо (с точностью до обозначений). Между тем для оперативной работы гораздо удобнее именно подать из командной строки help …

, нежели тыкать мышкой куда ни попадя.

Профиль  

arseniiv 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение04.04.2015, 01:34 

Заслуженный участник


27/04/09
28128

(Оффтоп)

А что, F1 с курсором на интересующем имени нету? (Не ради рекламы, но в Mathematica такое есть, хотя можно и выполнить команду ?имя или ??имя, но то для короткой справки.)

Профиль  

Geen 

 Re: Ошибка сохранения .mat файла в MATLAb

Сообщение04.04.2015, 01:43 

Заслуженный участник
Аватара пользователя


01/09/13
3343

ещё сохранялся традиционный терминальный.

Не знаю, консольным хелпом уже лет дцать не пользуюсь :-)

нежели тыкать мышкой куда ни попадя.

А вот это уже зависит от понимания задачи :-)

— 04.04.2015, 01:46 —

А что, F1 с курсором на интересующем имени нету?

Несколько лет уже как есть… (точно не помню — к хорошему привыкаешь быстро :-))

— 04.04.2015, 01:51 —

Он был хорош несколько лет назад

Его главное достоинство, ИМХО, — его можно читать, не пользоваться им просто как справочником, а именно читать. Такого же качества хелпы были у Borland’а.

Профиль  

arseniiv 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение04.04.2015, 07:33 

Заслуженный участник


27/04/09
28128

(Оффтоп)

Несколько лет уже как есть…

Тогда я спокоен за ваш MATLAB. :-)

Профиль  

lalolo 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение04.04.2015, 13:21 


03/04/15
4

всем спасибо. тема закрыта!

Профиль  

ewert 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение04.04.2015, 20:59 

Заслуженный участник


11/05/08
32139

(Оффтоп)

хотя можно и выполнить команду ?имя или ??имя, но то для короткой справки.)

Так именно короткая и нужна. Чтобы быстро сориентироваться или припомнить, не растопыривая пальцы на всю ширину стола — на мышку, жучку и прочих внучек.

Профиль  

arseniiv 

 Re: Ошибка сохранения .mat файла в MATLAb

Сообщение05.04.2015, 00:31 

Заслуженный участник


27/04/09
28128

(Оффтоп)

Так мышка и не нужна ж — F1, а потом по окну стрелочками, а выйти стандартным для системы способом или, может, ещё и Esc сработает. Но раз в матлабе оно есть, с чистой совестью М. не рекламирую.

Профиль  

ewert 

Re: Ошибка сохранения .mat файла в MATLAb

Сообщение05.04.2015, 00:45 

Заслуженный участник


11/05/08
32139

(Оффтоп)

а потом по окну стрелочками

дык сколько ж можно тыкать-то в стрелочки?… (тем более что по графическому окну они естественным способом и не работают). А я вот, например — однопальцевый, да так им наверняка и помру.

И потом не забывайте: мышка — это мно-о-го пальчиков, и плюс всё равно клавиатура. В то время как для набивки пресловутого хелпа достаточно лишь одного. В общем, со всей этой красотой — явно неэргономично выходит.

Профиль  

Модераторы: Karan, Toucan, PAV, maxal, Супермодераторы

Кто сейчас на конференции

Сейчас этот форум просматривают: нет зарегистрированных пользователей

Вы не можете начинать темы
Вы не можете отвечать на сообщения
Вы не можете редактировать свои сообщения
Вы не можете удалять свои сообщения
Вы не можете добавлять вложения

1 / 1 / 0

Регистрация: 13.11.2012

Сообщений: 20

1

04.11.2013, 19:22. Показов 3988. Ответов 2


Скажите пожалуйста в чем проблема???
Перестала работать функция save, какие бы параметры не указывала в функции save одна и та же ошибка:
1) save(‘FileBits.txt’, ‘Bits’,’-ascii’)
Error using save
Cannot create ‘FileBits.txt’ because ‘FileBits.txt’ does not exist.
Пробовала сначала создать файл FileBits.txt, но ничего не меняется.
2) save( ‘Bits’)
Error using save
Cannot create ‘Bits.mat’ because ‘Bits.mat’ does not exist.

__________________
Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь



0



Programming

Эксперт

94731 / 64177 / 26122

Регистрация: 12.04.2006

Сообщений: 116,782

04.11.2013, 19:22

Ответы с готовыми решениями:

Функция сохранения файла save
Кто может подсказать функцию сохранения файла в pyqt5
весь инет из лазил и не чего

Запрет на Save, QuickSave, Save As в Excel
Приветствую!

В Excel надо запретить запись если заполнена ячейка из диапазона1 и не заполнена…

Save и Save As
Подскажите, что не так? Пишу текстовый редактор в C#, подобный стандартному виндовому WordPad. Мне…

Save
Как сделать что бы можно было сохранять игру и при следующем входе загружаться?

2

sergsh

318 / 257 / 30

Регистрация: 30.03.2013

Сообщений: 755

07.11.2013, 21:58

2

У меня все работает

Matlab M
1
2
Bits=rand(5);
save('FileBits.txt', 'Bits','-ascii');

создается файл FileBits.txt и туда сохраняется матрица Bits



0



1 / 1 / 0

Регистрация: 13.11.2012

Сообщений: 20

07.11.2013, 22:17

 [ТС]

3

Похоже у меня что-то с матлабом(( у меня не работает, что бы я не сохраняла ошибка не меняется..



0



IT_Exp

Эксперт

87844 / 49110 / 22898

Регистрация: 17.06.2006

Сообщений: 92,604

07.11.2013, 22:17

Помогаю со студенческими работами здесь

save
Как сделать ЧТОБЫ ИГРА СОХРАНЯЛАСЬ
вот игра

Save
Я написал игру на VB ,но как сделать чтобы игра сохранялась?

Docmd.Save
подскажите, пожалуйста, как сохранить string, как обычный запрос?
спасибо

Datagridview save
Не знал где точна написать поэтому написал тут.

Мне нужно сделать так чтоб после нажатия кнопки…

Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:

3

Понравилась статья? Поделить с друзьями:

Читайте также:

  • Mass effect modder game data not found как исправить
  • Mask handle error 61 resmaskhandleerror
  • Marubox m600r ошибка батареи
  • Marta mt 1963 ошибка e4
  • Mark twain was a famous american novel исправить ошибку

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии