已回答
시뮬레이션 매니저가 저절로 사라집니다.
설명해주신 내용만으로는 상황을 정확히 파악하는 것이 어렵습니다. 구체적인 상황을 함께 재현 방법을 서술해주시면 문제 상황을 정확하게 파악할 수 있을 것으로 보입니다. 서술하시는 상황이 제품의 비정상적인 작동에 관한 것이므로 제 의...

1 year 前 | 0

已回答
Why do I receive a License Manager Error -5 in Polyspace?
안녕하세요. 하기의 공식 답변이 참고가 될 수 있으면 좋겠습니다. Why do I receive License Manager Error -5? - MATLAB Answers - MATLAB Central (mathworks.co...

1 year 前 | 0

已回答
Why RMSE doens't decrease in deeplearning toolbox?
The training environment is not ideal to use deep neural networks. A few comments: Why did you discretize the output, "FM", and...

1 year 前 | 0

已回答
Why didn't fasterRCNNLayers implement alternating training?
As far as I can understand, you probably have meant "alternating training" as the four steps in the paper, i.e., train the RPN,...

1 year 前 | 0

| 已接受

已回答
gan 코드 다른 데이터셋으로 훈련
좋은 질문 감사합니다. 설명에 따르면 아마 제공되는 예제의 코드를 그대로 이용했을 것으로 생각됩니다. GAN은 훈련이 어렵기로 유명합니다. 특히, 판별자와 생성자를 동시에 훈련해주어야 하는데 둘의 레벨을 적절히 맞춰주면서 훈련...

1 year 前 | 0

已回答
How can I adjust the number of threads for functions based on fftw?
You can determine the maximum number of threads with the function "maxNumCompThreads". See the doc below for more information...

1 year 前 | 0

已回答
소수와 분수의 출력 형식이 달라지는 경우
올려주신 스크립트에서 un_A와 un_mag가 각각 707/1000, 0.707로 다르게 보이는 이유는 vpa 함수의 사용 유무에 의한 것입니다. vpa 함수를 이용하면 소수를 이용해 숫자를 표현해주며 특정 유효 자릿수에 맞게 정...

1 year 前 | 0

| 已接受

已回答
Creating and using Datastore for LSTM time sequence data
tabularTextDatastore supports to manage a large set of "csv" files. To quote from the doc: Use a TabularTextDatastore object to...

1 year 前 | 0

| 已接受

已回答
How to measure roll, pitch with transform sensor
You can directly measure Euler angles from Transform Sensor block as the image below. See the attached model. I need your mod...

1 year 前 | 0

已回答
Connection with MATLAB and USRP 2954
I understand that you want to connect NI USRP 2954 to MATLAB. You must have either Communication Toolbox or Wireless Testbench. ...

1 year 前 | 0

已回答
Matlab으로 지도를 그리고 싶습니다.
기본적으로는 geoplot 함수를 이용해서 지도를 그릴 수 있습니다. 기본적인 예시는 아래와 같습니다. load usapolygon.mat geoplot(uslat,uslon) geobasemap topographic 위도...

1 year 前 | 0

已回答
인덱스 배열 초과 관련해서 코드 질문입니다. 왜 이런 문제가 생기나요(데이터 첨부)
xlsread를 이용해 데이터를 불러올 때 출력값 하나만 사용하게 되면 현재 엑셀 파일에 들어있는 내용 중 숫자만 불러오게 되며 첫 번째 열은 무시됩니다. readtable이 더 좋은 선택으로 보입니다. 아래의 코드를 확인하여 주...

1 year 前 | 0

| 已接受

已回答
timetable을 input 신호로 사용할 때 time column의 문자열 처리
이런 경우 파일 전처리를 수행하는게 좋을 것 같습니다. 전처리를 수행하셔서 "초" 라는 글자를 제외한 숫자만 받아서 다시 저장할 수 있습니다. 아래의 스크립트를 참고해주십시오. RowTimes = seconds(1:5)'; T...

1 year 前 | 0

| 已接受

已回答
How to save or export Data from analyzeNetwork window?
A new calss called NetworkAnalysis will be introduced from R2024a. This class can be retrieved as an output of analyzeNetwork. I...

1 year 前 | 1

| 已接受

已回答
응용프로그램을 mathworks에 연결할 수 없습니다. 이렇게 뜨는데 어떻게 해결하나요
안녕하세요. 설치와 관련된 이슈는 설치지원팀에서 정확히 다루어드릴 수 있습니다. 아래의 가이드를 따라 설치지원팀에 문의하여 주십시오. ----------------------------------------------- 1....

1 year 前 | 0

已回答
탈퇴하려면 어떻게 해야하나요?
안녕하세요. 계정과 관련된 문의는 고객지원팀에서 정확히 다루어 드릴 수 있습니다. 아래의 가이드를 따라 고객지원팀에 문의하여 주십시오. ----------------------------------------------- 1...

1 year 前 | 0

已回答
EfficientNet-b7 Network matlab
Consider using importNetworkFromTensorFlow function after saving the model in Python's end. There are examples which you can ref...

1 year 前 | 0

已回答
라이선스를 가져오질 못합니다.
안녕하세요. 설치와 관련된 이슈는 설치지원팀에서 정확히 다루어드릴 수 있습니다. 아래의 가이드를 따라 설치지원팀에 문의하여 주십시오. ----------------------------------------------- 1....

1 year 前 | 0

已回答
mtlab 에서 confusion matrix 구현
n = 100; groundtruth = randi(2 ,n, 1); pred = randi(2, n, 1); % Initialize the confusion matrix numClasses = max(groundtruth...

1 year 前 | 0

已回答
매트랩 설치 후 실행이 안됩니다.
안녕하세요. 설치와 관련된 이슈는 설치지원팀에서 정확히 다루어드릴 수 있습니다. 아래의 가이드를 따라 설치지원팀에 문의하여 주십시오. ----------------------------------------------- 1....

1 year 前 | 0

已回答
Orientation, Position, and Coordinate Convention
One thing to change in the function rotate_homogeneous_matrix: transformation matrices to be calculated before the transformed m...

1 year 前 | 0

| 已接受

已回答
작성한 코드 실행을 위해 필요한 툴박스 확인하는 방법
matlab.codetools.requiredFilesAndProducts 를 이용하면 스크립트를 돌리기 위해 필요한 툴박스를 출력해주는 것으로 확인됩니다. List dependencies of MATLAB program fil...

1 year 前 | 0

已回答
writetimetable을 사용하여 작업공간에 있는 여러 개의 테이블을 하나의 엑셀 파일에 작성
아래의 코드를 활용하실 수 있을 것으로 생각됩니다. %% Making dummy tables for demonstration LastName = ["Sanchez";"Johnson";"Zhang";"Diaz";"Brown"];...

1 year 前 | 1

| 已接受

已回答
How to Implement High-Speed SPWM Switching Using Simulink
I understand that you're looking to determine the duty cycle from a PWM signal. The following link offers a function designed to...

1 year 前 | 0

| 已接受

已回答
애드온 가격
안녕하세요. 이곳은 MATLAB/Simulink에 관한 기술적인 질문과 답변을 주고 받는 포럼입니다. 가격 및 구입 문의에 관한 문의는 영업 상담을 통해 진행하여 주시기 바랍니다. -------------------------...

1 year 前 | 0

已回答
Difference of ProtectedModels for Linux and Windows
(1) A protected model can only be simulated on the same OS that it was created in. You would need to create a version of the pro...

1 year 前 | 1

| 已接受

已回答
How can i select variables which has same number at the end
You can combine string pattern search and eval in order to accomplish what you want. However, in general, it is not recommended ...

1 year 前 | 0

| 已接受

已回答
4-D FFT 출력 획득
다차원 고속 푸리에 변환을 수행하기 위해 fftn 함수를 활용해볼 수 있습니다.

1 year 前 | 0

已回答
reactivate 방법 알려주세요
안녕하세요. 설치와 관련된 이슈는 설치지원팀에서 정확히 다루어드릴 수 있습니다. 아래의 가이드를 따라 설치지원팀에 문의하여 주십시오. ----------------------------------------------- 1....

1 year 前 | 0

已回答
기호를 사용하여 flowchart 그리기
(1) MathWorks의 Stateflow 제품을 이용하면 흐름도나 상태머신 형태의 그림으로 논리 흐름을 구현하실 수 있습니다. Stateflow 제품 정보 - MATLAB (mathworks.com) 그러나, 보통 사용하...

1 year 前 | 0

| 已接受

加载更多