Answered
How to smooth the matlab plot to get the desired plot shape?
I'm not sure about your intention. But the easiest way to smooth signals is moving average. See the doc below for more informati...

2 years ago | 0

| accepted

Answered
renaming subfolder same as main folder
Using movefile can help you. Below is an example script. Please create an empty folder and set the folder as a current folder of...

2 years ago | 0

Answered
Font and picture size in live script
I believe this has something to do with the default figure position setting of your teacher's computer. If you want to increase...

2 years ago | 0

Answered
How to make peaks of a plot smooth in MATLAB?
If you want a smoother interpolation result, spline can be a better way for you. x= [0,0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9,1]; ...

2 years ago | 0

| accepted

Answered
Win7에서 작동 가능한 최신 Matlab?
안녕하세요. 아래의 System Requirements를 보시면 R2021b 까지 Windows 7 SP1을 지원하는 것으로 확인됩니다. https://kr.mathworks.com/content/dam/mathworks/m...

2 years ago | 0

| accepted

Answered
How to zoom the generated code in Embedded Coder App?
I assume you are using R2023a as described in the "Release" panel. In R2023a, you can press Ctrl + and Ctrl - to zoom in or out ...

2 years ago | 0

Answered
How can i generate .m file for a given simulink model?
Unfortunately, there is no such a functionality to generate an equivalent m-file out of a Simulink model.

2 years ago | 0

Answered
Commercial Project with Home and Standard License Question
안녕하세요. 이곳은 "기술"에 관한 질문을 주고 받는 곳이기 때문에 말씀하신 이슈에 대해서는 신뢰할 수 있는 답변을 받기 어려울 수 있습니다. 저작권와 관련한 문의에 대해 정확히 답변 받기 위해서 아래의 페이지에서 "서비스 요청...

2 years ago | 0

Answered
Why Matlab crashes while Simulink is generating code
There are so many cases of crashes. Without a crash report, no one can be of help. You can reach out to MathWorks technical ...

2 years ago | 0

Answered
ThingTweet no está funcionando
Hi Arcadio, The MathWorks Application status shows that ThingSpeak operates normally. https://status.mathworks.com/ C...

2 years ago | 0

Answered
Can I use the deep learning toolbox on ThingSpeak?
Yes, if you are licensed to use the toolbox. You can find the same question in FAQ on ThingSpeak. To quote: 22. Can I use MAT...

2 years ago | 1

| accepted

Answered
How to solve Crash error in process of importing osm in roadrunner?
안녕하세요. 1) 말씀하신 사항을 재현해보려고 하였으나 재현할 수 없었습니다. 아래의 city.osm 파일을 import 했을 때에도 동일한 현상이 지속되는지 확인 부탁드립니다. C:\Program Files\RoadRunne...

2 years ago | 1

Answered
matlab 라이센스 문의
안녕하세요. 이곳은 "기술"에 관한 질문을 주고 받는 곳이기 때문에 말씀하신 이슈에 대해서는 신뢰할 수 있는 답변을 받기 어려울 수 있습니다. 라이센스와 관련한 문의에 대해 정확히 답변 받기 위해서 아래의 페이지에서 "서비스 ...

2 years ago | 0

Answered
Copy simulink block programmatically
It's always better when you provide a sample models and explain what you want to do with them. I believe you can try Simulink....

2 years ago | 0

Answered
How to make a box plot with a scatter plot overlay with uneven data sets
I'm not sure what you want. However, consider using hold on in order to overlay multiple plots on an axis. x1 = ones(1,100); x...

2 years ago | 1

Answered
any convenient way to plot stock trading data without after & pre market data
I'm not sure if there are any off-the-shelf ways or any equivalent easy ways to break time axis. This is because the time values...

2 years ago | 0

| accepted

Answered
Trying to use modified secant method to solve for a theta over different g values.
You can debug the script. See that the input v for func in the first iteration is equal to 0. This makes the output from the fun...

2 years ago | 0

Answered
Using a cell array as an argument of a function handle
a(1) = {@(x) x(1) + 2}; a(2) = {@(x) x(2) + 3}; b = @(x) a{1}(x) + a{2}(x); % merging function handles my_input = [5, 8]; %...

2 years ago | 1

Answered
Export Simulink model to FMU version 1.0?
Hi Melissa, Unfortunately, Simulink only supports exporting to FMU 2.0 both for standalone and tool-coupling. You can only "im...

2 years ago | 0

Answered
sqlfind function is not found - 'Unrecognised function or variable sqlfind'
sqlfind is not a sole function but a method for database. Below is a part of database.m. % database methods: % -----------...

2 years ago | 0

Answered
Summing up subsequent rows if equal
A = [2 3 5 3 4 5 2 3 5 3 4 5 5 6 6 2 3 5 5 6 6 3 4 5 ]; kindOfRowVec = unique(A(:, 1:2),'r...

2 years ago | 0

Answered
How would it be possible to deploy a web application from ΜΑΤLΑΒ R2014a code
Did you make the GUI with "guide"? Unfortunately, you cannot deploy MATLAB GUIs created with "guide" into a web application. A...

2 years ago | 0

Answered
Plot titles not centered when plot is exported as pdf in Linux version only
If this is reproducible, it may be a bug. You can reach out to MathWorks Technical Support with reproduction steps.

2 years ago | 0

Answered
Linking 2D datapoint colors to colormap
data1 = [0.33; 0.5; 0.57; 0.45; 0.46; 0.7; 0.6; -0.09; 0.4; -0.34; -0.36; ... -0.75; -0.03; -0.1]; grp1 = [2; 2; 2; 2...

2 years ago | 1

| accepted

Answered
How to do phase compensation from the different phases of a waveform?
Hi Chrek, I believe what you want is similar to the concept of All Pass Filter. You can filter the signal 2 with an allpass fil...

3 years ago | 0

Answered
How to find the MATLAB code in the MATLAB Simulink example file
You can only look under the mask SVPWM Generator (3-Level) but not into the SVPWM3L_TimingCalculation which is shipped as a p-fi...

3 years ago | 0

Answered
I want to know the process of changing the array to table. Too many table variables because there are too many arrays.
Please see if it works for you. a=[1; 2; 3; 4; 5;] ; b=[10; 20; 30; 40; 50;]; c=[100; 200; 300; 400; 500;]; arraydata = [a b...

3 years ago | 0

| accepted

Answered
Export trained classification model from Classification Learner to use in python
You can save the model parameters via MAT file. In Python's end, you can use scipy.io.loadmat method to import mat file from Sci...

3 years ago | 0

Answered
simulink subsystem replacement issue
Unfortunately, single usage of "replace_block" does not allow you to replace a whole subsystem. The "replace_block" is used to ...

3 years ago | 0

| accepted

Answered
How can I check the existance of sub-variable in network layer
The 'WeightLearnRateFactor' is a property of Convolution2DLayer not a field. You can use isprop. net = googlenet; lgraph = l...

3 years ago | 0

| accepted

Load more