답변 있음
그래프 plot 시에 한글 지원 문제
Unfortunately, there is no good way to work around problem other than to set the following properties of charts with a set(0, "D...

2년 초과 전 | 0

답변 있음
그래프를 따라 움직이는 또 다른 그래프
drawnow 함수를 이용하면 애니메이션을 그릴 수 있습니다. 아래는 sine 함수를 따라 움직이는 원에 관한 예시입니다. n = 100; t = linspace(-1, 1, n); x = sin(2*pi*1*t);...

2년 초과 전 | 0

답변 있음
i want to mark some ticks longer than others at regular gap.
XTick과 MinorTick을 섞어서 표현하면 특정 눈금이 다른 눈금보다 길어 보이게 표현할 수 있습니다. figure; plot(1:10, 1:10); ax = gca; set(ax, "XTick", 0:3:9) se...

2년 초과 전 | 0

답변 있음
평가판 다운로드
아래의 사이트에서 평가판 사용 신청할 수 있으니 확인하여 주십시오. https://kr.mathworks.com/campaigns/products/trials.html

2년 초과 전 | 0

답변 있음
Matlab 평가판 설치시 “예기치 않은 문제 발생” 오류 관련 문의
안녕하세요. 설치와 관련된 이슈는 설치지원팀에서 정확히 다루어드릴 수 있습니다. 아래의 가이드를 따라 설치지원팀에 문의하여 주십시오. ----------------------------------------------- 1....

2년 초과 전 | 0

답변 있음
Installation error: Truncated ZIP entry: bin/win64/libmwi18n.dll error
안녕하세요. 설치와 관련된 이슈는 설치지원팀에서 정확히 다루어드릴 수 있습니다. 아래의 가이드를 따라 설치지원팀에 문의하여 주십시오. ----------------------------------------------- 1....

2년 초과 전 | 0

답변 있음
설치 중 Truncated ZIP entry: bin/win64/libmwi18n.dll 오류가 발생합니다
안녕하세요. 설치와 관련된 이슈는 설치지원팀에서 정확히 다루어드릴 수 있습니다. 아래의 가이드를 따라 설치지원팀에 문의하여 주십시오. ----------------------------------------------- 1....

2년 초과 전 | 0

답변 있음
I don't want upside ticks.
box 함수를 이용하면 위쪽과 오른쪽의 tick을 제거할 수 있습니다. figure(1) plot(1:10) figure(2) plot(1:10) box off; 박스는 유지한 채로 눈금만 제거하고 싶다면 아래와 같이 ...

2년 초과 전 | 0

답변 있음
Could I Change data type of state active status?
To me, the easiest is to use Data Conversion block to change a boolean to uint16. See the attached model for details.

2년 초과 전 | 0

답변 있음
하노이의 탑 구하는 과정좀 부탁드립니다.
MATLAB Answers is a place you can get help from the user community on specific MATLAB questions. It is not intended as a place t...

2년 초과 전 | 0

답변 있음
Mathwork 평가판 설치 오류
안녕하세요. 설치와 관련된 이슈는 설치지원팀에서 정확히 다루어드릴 수 있습니다. 아래의 가이드를 따라 설치지원팀에 문의하여 주십시오. ----------------------------------------------- 1....

2년 초과 전 | 0

답변 있음
평가판 설치 오류
안녕하세요. 설치와 관련된 이슈는 설치지원팀에서 정확히 다루어드릴 수 있습니다. 아래의 가이드를 따라 설치지원팀에 문의하여 주십시오. ----------------------------------------------- 1....

2년 초과 전 | 0

답변 있음
simulink crush with external c code
The issue sounds very specific to the model and code. It's hard to investigate the issue without its crash report and reproducti...

2년 초과 전 | 0

답변 있음
How to clear the serial buffer of Raspberry Pi
The function flush (since R2019b) clears serial port device buffers. Would this function work for you?

2년 초과 전 | 0

답변 있음
how do you print a uigauge?
I believe exportapp will work for you. fig = uifigure; cg = uigauge(fig); exportapp(fig, 'foo.png')

2년 초과 전 | 1

| 수락됨

답변 있음
How to change the input of a subsystem using open_system
I understood that you want to input a signal to input port. You don't need to use set_param. You can use Data Import/Export func...

2년 초과 전 | 0

| 수락됨

답변 있음
avec app designer je veux passé une variable en entree de mon propre component
Please excuse my answer is in English. I do not speak French, but I was accidently the first one who would answer your question....

2년 초과 전 | 0

답변 있음
Matlab startup very slow
Please reach out to Install Support team which also deals with issues of unexpected start-up issues of MATLAB.

2년 초과 전 | 0

답변 있음
Matlab does not start on MAC OS Sonoma
MATLAB R2023a is not supported for macOS Sonoma (14). See the system requirement for R2023a Mac. For R2023b, you may need to sh...

2년 초과 전 | 0

답변 있음
canoncorr gives different results in differents versions of Matlab
Below, I relay the discussion from DEVs. I relay this information because it will help other end users who ran into the same iss...

2년 초과 전 | 0

답변 있음
From Video device cannot capture the image.
I used the block and it works as expected in my machine. It may be the configuration issue of your machine, or you may need furt...

2년 초과 전 | 1

| 수락됨

답변 있음
Spray painting simulation and thickness evaluation
Maybe some basic approach is to use a button down callback and scatter dots that are randomly sampled from normal distribution. ...

2년 초과 전 | 1

| 수락됨

답변 있음
listing subpackages of a package in a Contents.m file
Hi @A.B. Thank you for the question and providing your own answer. May I inquire about your current workflow? The documentation...

2년 초과 전 | 0

답변 있음
Execution of script varargin as a function is not supported
You are not supposed to use varargin as function's input argument explicitly as "varargin". varargin in MATLAB is like a magic ...

2년 초과 전 | 2

| 수락됨

답변 있음
Unrecognized function or variable 'asbQuadcopterStart'.
The project is not in MATLAB path by default. Open the example for the proejct first. Then, you can open the proejct. Run the co...

2년 초과 전 | 5

| 수락됨

답변 있음
Why is dlgradient giving different answers?
You can try to incorporate dlfeval when using dlgradient. You can get the results of 1's as expected. Parameters = struct; sta...

2년 초과 전 | 1

| 수락됨

답변 있음
C code compliant with AUTOSAR
You must have received error messages similar to the one below. No, generating AUTOSAR-compliant C code from a subsystem is not ...

2년 초과 전 | 1

답변 있음
Unable to export library to protected model
I have released the following Q&A. Can you please check the Answers page below and see if it can solve your issue? IP protectio...

2년 초과 전 | 1

| 수락됨

답변 있음
simulink Array plot channel bug?
Thank you for the model and explanation. I can reproduce the issue with your model in R2021a. Also, as you mentioned, it is not ...

2년 초과 전 | 1

| 수락됨

답변 있음
lookfor could not find polyfit using keyword 'polynomial' and 'fitting'.
Thank you for reporting this issue. I can reproduce the issue in a machine with Japanese locale. (Sorry, I don't have a Korean l...

2년 초과 전 | 2

| 수락됨

더 보기