已回答
setting epochs of forwardfeednet
Hello, Use the syntax below to customize options for your feedforward neural network. net=feedforwardnet(size,trainFcn); The ...

4 years 前 | 0

| 已接受

已回答
Nonlinear regression (비선형회귀)_ Express the formula for b.
Hello, To my understanding, your code should be like as shown below clc, clear, close all modelfun= @(b,x)(b(1)+b(2)*exp(-b...

4 years 前 | 0

已回答
Newtons Interpolation error code
Hello, The code in one file seems to run fine on my end. The second code has the value of T missing which on adding to the cod...

4 years 前 | 0

已回答
Unscented Kalman Filter - How to add noise to the system? - Simulink
Hello, To my understanding, You have to do both the things. The function will be different based on the noise is additive or no...

4 years 前 | 0

| 已接受

已回答
integration with vectors constants
Hello Victoria, To my understanding, vc is a column vector where as P2 is a row vector. Please change vc to a row vector. Hope...

4 years 前 | 0

已回答
calling a function?
Hello, To my understanding of the question I have made a code. Please take a look. clc clear global T; T=readtable('mlq.xls...

4 years 前 | 0

已回答
Save point cloud plot as jpg with the same format
Hi, Please follow the following steps to export image to other file formats. Go to file Select Export Options Tweak the para...

4 years 前 | 0

| 已接受

已回答
I cannot seem to get line 248 to work, is there something different I have to do for a Tiff file?
Hello, Please provide more insight to what issue you are facing. Also, please go through the documentation link for dir, sprint...

4 years 前 | 0

已回答
Index exceeds the number of array elements (0).
Hello, I have rewritten the code in the form of an if else statement. clc clear %defining variables statV_F = [] s...

4 years 前 | 0

| 已接受

已回答
How to plot sum of series?
Hello Teb, Please take a look at the following code. You can change the value of n. x=-2:.1:2 plot(x,expr(x)) function [v...

4 years 前 | 1

已回答
.deb file missing
Hello Gonca, Please refer this documentation link for information on installation related assistance. Hope it helps

4 years 前 | 0

已回答
Problem while installing MinGW-w64 Complier
Hello Manoj This is a known issue. Our developers are aware about it and will try to fix it in future releases. You can use th...

4 years 前 | 0

| 已接受

已回答
Define chemical compounds in simulink
Hi, To answer the second part, you can use the Gas property block. In this block you can define all the properties of the gas. ...

4 years 前 | 0

| 已接受

已回答
Reconstruct a sequence from its DTFT
Hi , please take a look at the following code for calculating the iDTFT. It first calculates the DTFT followed by IDTFT. W = 2;...

4 years 前 | 0

已回答
Why matlab shows an error like>> Error using qammod (line 54) INI_PHASE must be a real scalar.?
Hello, The qamdemod acceots only scaler values.It seems like the input argument to the qamdemod is not scaler or it is a comple...

4 years 前 | 0

已回答
Error regarding matrix indices while iterating through loop
I tried reporducing this on my end. It seems to have worked fine when I have assumed the values of some variables as shown below...

4 years 前 | 0

已回答
uicontrol로 만든 text를 다른 이미지로 변환시키는 방법이 있나요?
Please go through this answer available in the community. You can also use the documentation for more information on uicontrol ...

4 years 前 | 0

已回答
How do I force quit?
If you are trying to stop MATLAB execution, you need to press Command + "." . For more information please go through the followi...

4 years 前 | 1

已回答
Plotting the data with extended field.
Please take a look at the following code. To change the limits on the x axis, xlim function is used. speed = [30 45 60 75 90 1...

4 years 前 | 0

已回答
Sublibrary naming issue with the name "Example"
To my understanding, as name the sublibrary contains the string "example", it gets hidden. I tried reproducing the same on my en...

4 years 前 | 0

已回答
Matlab GUI will no longer open from terminal
Please try the following steps. a. Type the following commands in this sequence and check if it resolves the issue. Restore...

4 years 前 | 0

已回答
How to sketch the region enclosed by the given curves and compute it's area
The fplot function can be used to solve it. By solving equations, we can see that the intersection point is at (1,0). To compute...

4 years 前 | 0

已回答
Speeding up the simulation?
To my understanding, you are trying to reduce the simulation time. There are three different types of simulation modes available...

4 years 前 | 0

已回答
How to bold a phrase in a textbox?
To my understanding, you are trying to write a string in a textbox in line 1. Then followed by another string “Flag:” and a numb...

4 years 前 | 0

已回答
Which functions do I have to use to solve this waterfall problem written below?
You can solve the problem with the following script. You need to give input in the form of defining value for c(proportionalty c...

4 years 前 | 0

已回答
2D cubic interpolation
You can perform 2D Cubic interpolation using the function interp2 and specifying the method as ‘cubic’. For example, a general ...

4 years 前 | 0

已回答
Can you add new matlab script to windows 10 context menu?
As you have mentioned, one way to do this is by adding a registry by following the above-mentioned steps. Another way is to merg...

4 years 前 | 0

已回答
Errorbar on bar graph using table values
To my understanding, currently the size of the error bar would be the value of the data in ‘Mean speed estimate ‘ column of the ...

4 years 前 | 0

已回答
Error from 'Collaboration' Invitation
As per my understanding, this issue occurs when you are trying to share a folder to an account which does not have a MathWorks a...

4 years 前 | 1

| 已接受