Answered
Can I know how many times the cylinder rotates?
Check the script below and see that the Cylinder rotates only once during the 86 frames. I intentionally added a red marker to v...

2 years ago | 1

| accepted

Answered
Wanna find specific index(raw) which meet multiple(~3) conditions
1. First off, it's not possible to reproduce your issue only with your description. See the sample code below. rng(1); A = ran...

2 years ago | 2

| accepted

Solved


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

2 years ago

Answered
I would like to get Hardware support package without internet connection
I know it's an old question, but here is my note for future users. Support packages for MATLAB R2016a and previous releases ar...

2 years ago | 1

Answered
GAN 코드에서 output image size 변경방법(Changing the output image size in GAN code)
Transposed Conv Layer가 이미지를 생성할 때에는 Filter의 사이즈, Stride의 크기 등의 하이퍼파라미터에 의해 출력 이미지 사이즈가 결정됩니다. 가령 참고하신 예제에서 filterSize 값을 5에서 4로 ...

2 years ago | 1

Answered
Obtener voltage usando redlab von Meilhaus
Which RedLab device do you have? According to the Answers page below, Meilhaus Redlab seems to be the same as Measurement Comput...

2 years ago | 1

| accepted

Answered
Hysys Column Stage Error
It looks like the error is related to "invoke". Would you invoke simulation cases and see if you can proceed? aspen = actxserve...

2 years ago | 1

Answered
One Class SVM not working
This looks like a bug in ocsvm. Can you please contact Technical Support?

2 years ago | 1

Answered
One Class SVM not working correctly
Thank you for reporting this. I can see that something is broken in ocsvm. Can you please contact Technical Support and report t...

2 years ago | 1

| accepted

Answered
This Matlab code is saying Index in position 1 is invalid. Array indices must be positive integers or logical values.
Let's look at the code in line 63. k1 = odeFunc{i}(t(n), y(n)); where odeFunc, t, y are defined like below. odeFunc = 1×7 ...

2 years ago | 1

Answered
simulink에서 matlab function 블록에서 작업공간에 이미 선언된 변수를 인식하지 못합니다.
Base Workspace와 MATLAB Funciton의 Workspace는 자동으로 공유되지 않습니다. MATLAB Function 블록의 Workspace에 Base Workspace의 변수를 쓰는 방법들이 아래의 답변에 설...

2 years ago | 2

| accepted

Answered
How do I obtain the bode plot of the given transfer function?
Here is a simple example. You can further put your parameters in H. s = tf('s'); H = (s+1)/(s^2+s+1); bodeplot(H) grid on; z...

2 years ago | 1

Answered
what is logsout in simulink and how i can turn it to simout?
Do you happen to see the WiFi-like icons (, logging badge is the official terminology) in the model? Simulink allows saving sign...

2 years ago | 1

| accepted

Answered
How can I use various colors to fill the area under a normal distribution curve?
f = @(x, mu, sd) 1/(sd*sqrt(2*pi)) * exp(-1/2*((x-mu)/sd).^2); x = linspace(1.5, 5, 1000); mu = 3.25; sd = 0.5; figure; ...

2 years ago | 2

Answered
Is it possible to insert a Matlab Live Task into an App Designer GUI?
The Live Tasks help you interactively determine methods and parameters for outlier cleaning. The tasks will generate MATLAB code...

2 years ago | 1

| accepted

Answered
LS-Dyna to matlab connection
It's not official, but you can refer to such a 3rd party project. The author is trying to make run Simulation in LS-Dyna via MTA...

2 years ago | 1

| accepted

Answered
What is dsmpblib ?
The library appears to be a third-party library called ConfigurationDesk's MIPS Blockset (dSpace-mips library) from dSpace. Ple...

2 years ago | 1

Answered
매트랩 실행 시 글자 깨짐 현상은 어떻게 해결해야합니까?
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 years ago | 0

Answered
I have license expire problem
A possibility is that your organization did not extend its contract with MathWorks, or it's about to renew your license. Please ...

2 years ago | 0

Answered
How to make an app that does not loose data when it's closed?
I understand you do not want to overwrite previous files and want to make new name everytime. I suggest you save data with time ...

2 years ago | 0

Answered
Model cannot generate AUTOSAR compliant code because it contains some blocks with continuous state
No. Continuous time with AUTOSAR target is unsupported. Make sure there are no continuous-time blocks in your model if you wish ...

2 years ago | 0

Answered
Edit training process graph
Yes, you can customize progress monitor with trainingProgressMonitor. You can refer to the doc below for further information. M...

2 years ago | 0

Answered
라이센스 기간 확인
안녕하세요. 라이센스와 관련한 문의는 고객지원팀에서 도와드릴 수 있습니다. 아래의 가이드를 따라 고객지원팀에 문의하여 주십시오. ----------------------------------------------- ...

2 years ago | 0

Answered
Plotting issue where the curve is missing
Specify a marker shape and color to make it explicit. Phi_b = (1 - 0.9307) *491390.8868; time = 0:0.1:17; plot(Phi_b, time, '...

2 years ago | 1

| accepted

Answered
매트랩 온라인, 실행 해두면 제가 컴퓨터를 종료하여 오프라인이되도 계속 진행되면 안되나요 ㅠ
현재 MATLAB Online은 사용자가 시스템을 활성 상태로 유지하는 경우에만 장기 세션을 허용합니다. 즉, MATLAB Online을 활발하게 사용하는 경우에만 가능합니다. 세션을 떠나 비활성 상태가 되면 15분 후에 MATL...

2 years ago | 0

Answered
Support package installtion help
Would you see if this Answers page can be of your help? If you have subscribed to Software Maintenance Service, you can reach ou...

2 years ago | 0

Answered
Centerline detection from the binary image.
I didn't detect rectangulars, but would this work for you? img_orig = imread('image.png'); img = imbinarize(img_orig); [~,c] ...

2 years ago | 0

Answered
what is the meaning of S , C, B in 3D U-Net Layer?
The formats stand for: "S" — Spatial "C" — Channel "B" — Batch "T" — Time "U" — Unspecified For further information, you c...

2 years ago | 0

| accepted

Answered
라이선스가 다른 MathWorks 계정에 연결되어있어, 다른 계정으로 라이선스 이전 관련 질문(오류348)
안녕하세요. 라이센스와 관련된 문의는 고객지원팀에서 정확히 다루어 드릴 수 있습니다. 아래의 가이드를 따라 고객지원팀에 문의하여 주십시오. ----------------------------------------------- ...

2 years ago | 0

Answered
How can I calculate block parameters from mask parameters?
If you were to choose one our of multiple scenarios depending on your choices, a good way to go is to use a variant subsystem wi...

2 years ago | 0

| accepted

Load more