Risposto
Mobilegene환경에서 젠되는 arxml 파일을 MBD 환경에 가져와 스켈레톤 파일 생성하는 방법에 대해 문의
안녕하세요. 모빌젠 환경에서 생성한 arxml 파일을 임포트하여 탑다운 방식으로 AUTOSAR 타겟 ASW 개발을 수행하려고 하시는 것으로 보입니다. MATLAB EXPO 2024 Korea에서 현대자동차 장동근 연구원님께서 이와...

5 mesi fa | 0

Risposto
Equations for predicting outputs under SVM regression (RBF or polynomial)
Here is one for polynomial kernel. X = readmatrix('inputdata.xlsx', Sheet="Sheet1"); Y = readmatrix('outputdata.xlsx', Sheet="...

5 mesi fa | 0

Risposto
매트랩실행시 글씨가 깨집니다
현재 Linux OS에서 사용하는 Default 폰트에 맞게 폰트 설치가 되어 있지 않아 발생하는 문제일 수 있습니다. 가령, Linux에서는 "nota-sans-cjk-kr"를 한글 디폴트 폰트로 잘 사용하시는데, 이 경우 아래...

5 mesi fa | 0

Risposto
Can I replace the vehicle physics in Carla with a custom vehicle model?
Yes, you can use ROS Toolbox and CARLA Server/Client to simulate your custom vehicle model in CARLA. See the examples below for ...

5 mesi fa | 0

Risposto
python으로 workspace 변수 호출하기
실행 중인 MATLAB 세션에 Python을 통해 접근하기 위해서 수행해야 하는 몇 가지 명령어들이 있습니다. (1) 공유할 MATLAB 세션에서 아래와 같은 명령어로 해당 세션을 공유할 수 있도록 해주어야 합니다. matl...

5 mesi fa | 0

Risposto
matlab fourier series..
MATLAB에서 'symfun' 타입을 'double' 타입으로 변환할 수 없다는 에러는 주로 심볼릭 변수를 포함한 표현식을 숫자로 변환하려 할 때 발생합니다. 이 문제를 해결하려면, 심볼릭 변수를 실제 값으로 대체한 후 변환해야...

5 mesi fa | 0

Risposto
Ybus 구성후 실행시 오류가 납니다. 오류명은 '입력인수가 부족합니다.' 입니다.
올려주신 코드를 돌려보았을 때 함수 안에 있는 "nr"이 무엇인지 알 수 없어 말씀하신 에러를 재현할 수 없습니다. 도움을 받기 위해서는 말씀하신 입력 인수 부족에 관한 에러를 재현할 수 있도록 해주셔야 할 것 같습니다. fun...

5 mesi fa | 0

Risposto
함수 입력 인수가 부족합니다 오류
function y=difference_eq_1(ni,nf,a,b,y0,x) n=ni:nf; yy=[y0 zeros(1,length(n))]; N=length(a); M=length(b)-1; for k=N+1:N+leng...

5 mesi fa | 0

Risposto
위치 2의 인덱스가 배열 경계를 초과합니다. 어떻게 해결하나요?
올려주신 스크립트를 보았을 때, Models = ls('ModelSongs4xcorr/*.wav'); 라는 명령어를 통해 "ModelSongs4xcorr" 폴더 안의 wav 파일의 정보를 받아오려고 하는 것으로 보입니다. ...

5 mesi fa | 0

| accettato

Risposto
simulink FMU export fail
(1) What's your output when you run the command below? Can MATLAB detect Visual Studio C++ 2017 with the following command? mex...

5 mesi fa | 0

Risposto
Can't open *.m files
I believe the function name is changed unintentionally. It's supposed to be narginchk not unarginchk. which -all narginchk whi...

5 mesi fa | 0

Risposto
Low performance when training SVM model using "polynomial" kernel function
As @Ganesh has answered, using "kernel" itself doesn't guarantee high performance. Improving model performance is a complicated ...

5 mesi fa | 1

| accettato

Risposto
Separate graph arrows for two y-axes on the matlab
To add Sai's answer, you can change the color of annotations like below. EDIT: Fixed the direction of the second arrow as @Aqua...

5 mesi fa | 0

| accettato

Risposto
How to put existing figures in one figure together in case labels are also existing?
fig1 = openfig('0001.fig'); ax1 = findobj(fig1, 'type', 'axes'); cb1 = findobj(fig1, 'type', 'colorbar'); cmap1 = colormap(ax...

5 mesi fa | 0

| accettato

Risposto
How to load .mat file into base workspace using app designer
According to your description, I believe you are working with a Simulation App with a Simulink model. Usually, it's not a good ...

6 mesi fa | 0

Risposto
Equations for predicting outputs under SVM regression (RBF or polynomial)
Here is one for RBF. This will be good reference for polynomial kernel. X = readmatrix('inputdata.xlsx', Sheet = "Sheet1"); Y ...

6 mesi fa | 0

| accettato

Risposto
How to using multi output in Neural network fitting app?
For your reference, the doc below explains how to create shallow neural networks with multiple outputs. Edit Shallow Neural Net...

6 mesi fa | 0

| accettato

Risposto
How to export INT8 quantized weight of deep neural network?
Use the quantizationDetails function to extract quantization details. You should inspect your qDetailsQuantized which was extra...

6 mesi fa | 0

| accettato

Risposto
온램프에서 정답과 같은 답을 썼는데도 불구하고 오답으로 처리하고 있습니다. 이거 오류난건가요? 아니라면 이거 어떻게 푸는건가요?
안녕하세요. 해당 이슈는 MATLAB Online의 언어가 한국어로 설정되어 있을 때 발생하는 에러로 보입니다. 이 현상을 우회하기 위해 웹브라우저의 언어 설정을 영어로 변경하고 MATLAB Online의 언어를 영어로 바꾸실...

6 mesi fa | 0

Risposto
How to predict responses of new data from linear SVM model?
Here is the example I cooked up for you. I assumed that you would want to use a linear kernel. For more information on manual pr...

6 mesi fa | 0

| accettato

Risposto
Tool에서 "Reporting -> Export -> Export All Result"로 생성되는 레포트를 CLI로도 생성할 수 있습니까?
Command Line에서 Polyspace의 결과를 출력(export)하기 위해서는 polyspace-results-export 커맨드를 사용하실 수 있습니다. 아래의 문서에서 자세한 내용을 확인하실 수 있습니다. (아래 문서...

6 mesi fa | 0

Risposto
在matlab function中导入net,但是出现了以下问题,尝试过6.3和8.1版本的MinG64,但是一直报错。Deep learning code generation using MinGW64 Compiler (C++) toolchain is not supported for mkldnn target.
MinGW is not supported for this workflow yet. Would you install the Visual Studio 2022 and use its compiler? See the webpage bel...

6 mesi fa | 0

| accettato

Risposto
After PCA, the reconstructed image is darker than the original.
The reconstructed image is darker because you did not compensate the mean which is substracted when calculating covariance matri...

6 mesi fa | 2

Risposto
How can I add 'MISRA C:2023' to Code Generation Objectives?
As far as I understand, Embedded Coder only provides code generation for MISRA compliance up to MISRA C:2012. C Coding Directiv...

6 mesi fa | 0

Risposto
C-RNN dual output regression
The error message is like below. Error using trainnet (line 46) Error forming mini-batch of targets for network output "fc_1"....

6 mesi fa | 0

| accettato

Risposto
the following error. "LowerSaturationLimit <= InitialConditionForIntegrator <= UpperSaturationLimit"
The issue stems from the change of behavior of initial condition of integrator and its output saturation limits. See the versi...

6 mesi fa | 0

Risposto
2019b 설치 후 Code generation에서 Error 발생합니다.
@광용 @Taeseok Kang 해당 이슈는 R2016b에서 R2018b 사이에 발생했던 이슈로 symbolic dimension과 numerical dimension 간의 차원 불일치에 대한 assertion에서 발생하는 이슈...

6 mesi fa | 0

Risposto
C-RNN regression error (Array inputs have incompatible channel dimensions)
It might be a bug in R2022a, but I'm not sure where exactly the error comes from because it uses a "builtin" function. However, ...

6 mesi fa | 0

| accettato

Risposto
How to ploting input signal by "Digilent Analog Discovery Pro 3450"
Unfortunately, Analog Discovery Pro 3450 is not a supported hardware. Only Analog Discovery (LEGACY) and Analog Discovery 2 are ...

6 mesi fa | 0

| accettato

Risposto
cftool을 쓰면 최대 재귀 제한이 걸립니다.
에러 메시지로 보았을 때 현재 "cftool"이라는 이름의 함수가 있고 그 안에서 "cftool"이라는 명령어를 또 사용하고 있는 것은 아닌지 의심됩니다. (1) 아래와 같은 명령어를 이용했을 때 Curve Fitting To...

6 mesi fa | 0

Carica altro