필터 지우기
필터 지우기

While trying to import data to neural network fitting and after selecting predictors when browsing data fore response Matlab automatically changes data in predictor then error

조회 수: 13 (최근 30일)
  댓글 수: 5
Mohammad
Mohammad 2023년 7월 2일
Just now updated to R2023b and still facing same error and same issue while importing data , it does automatically change data sets to one set only

댓글을 달려면 로그인하십시오.

답변 (1개)

Yash
Yash 2023년 7월 18일
Hello Mohammad,
The issue you are experiencing is due to the Import Wizard that converts the table from the input file into a matrix, named "data". This variable "data" is then overwritten when you try to load the next input file, as the variable created is always named "data".
The following steps can help resolve the issue.
  1. Open the Neural Net Fitting App and click on the "Import" icon.
  2. This opens the Import Data from Workspace window. Click on the "Browse" button next to the "Predictors:" field and select the Predictors input file.
  3. This opens a new window named Import Wizard, where the preview of the matrix that has been converted from the table in the input file is displayed on the right. Click the "Next >" button.
  4. The next page displays the variables that will be loaded into the MATLAB workspace. Right-click on the "data" variable under the "Name" column and select "Rename Variable". Then rename the variable to an appropriate variable name, such as "predictorsData".
  5. At this point you can also deselect the "colheaders" and "textdata" variables from being loaded into the MATLAB workspace, if they are unnecessary. Then click "Finish".
  6. Repeat steps 2 - 3 for the "Responses:" field with the Responses input file.
  7. Repeat step 4 but rename the "data" variable to "responsesData".
  8. Repeat step 5.
  9. Then when the "OK" button is pressed in the Import Data from Workspace window, the error will no longer occur.
I hope this helps.

제품

Community Treasure Hunt

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

Start Hunting!

Translated by