回答済み
I can't change polygon faces's color
To explore further on this, follow the documentation provided here

約6年 前 | 0

| 採用済み

回答済み
How to know which pixels are covered by a plot?
Similar question is answered here, check if it can help you

約6年 前 | 1

回答済み
angle conversion using for/while loops
you can learn about them in the documentation from mathworks here.

約6年 前 | 0

回答済み
convert rgb 3D matrix to 2D
Yes, you can proceed with above provided information.

約6年 前 | 0

回答済み
Why, when I open the histogram variable from the workspace,sometimes it opens in the variables window and somtimes in the plot window?
Hi, I don't see it as a usual issue, can you be more specific when you get issue,you can try with examples mentioned in the doc...

約6年 前 | 0

回答済み
Matlab 2020 plot icons missing
You can refer to a similar question answered on the forum here.

約6年 前 | 1

| 採用済み

回答済み
Finding mximum value in text file
A way to do is to read the txt file in to an array in matlab and then perform operations on it to get your desired results You ...

約6年 前 | 0

回答済み
How can I call a function inside a class in the command window?
In addition to above going through this linkwould help you ramp up using classes in MATLAB.

約6年 前 | 0

回答済み
How to find common elements in each row of two different matrices?the output must be an array whose rows are made up with the element in common of each row of the matrices in input
Yes, the above provided example should give some insight in to getting your output for further study refer to link, to learn ac...

約6年 前 | 0

| 採用済み

回答済み
Write Matlab code to evaluate 14x^2+2x + 4 and assign it to y.
It is similar to evaluating expressions in any other programming language, for instance you do it as y = 14*(x^2) + 2*x +4; f...

約6年 前 | 0

回答済み
How do I turn an integer into clock time
In addition to the hints given, this would entirely solve your problem function Time = findclocktime(I) flag = 'am'; ...

約6年 前 | 0

| 採用済み

回答済み
5G - PDCCH DMRS
There is an example to describe DCI processing in the 5G system, you can refer it here, for further information you need to refe...

約6年 前 | 1

回答済み
Make a curve and fit it in a "stacked" histogram
From your code I see that, “data” is a matrix which is input to histfit function, but histfit expects a vector input , thereby ...

約6年 前 | 0

回答済み
What is an alternative to cell arrays in simulink models?
Way to achieve this is to save cell in to .mat file and load that file in the MATLAB script in Simulink which will be read here ...

約6年 前 | 0

回答済み
Pad array to certain size
Hi Raheem, This is how you can realize your required outcome, x=randi(256,200,200); % Initial Matrix z=zeros(425,425); %New m...

6年以上 前 | 0

回答済み
How to make gaussian pplot with my data
As per my understanding you want to plot the probability density function with “mu” which must be average of your data. You can ...

6年以上 前 | 0

回答済み
Matlab 2019b installer does not install on Mac OS Catalina
Hi Roozbeh, It is not necessary to remove the 2019a installation to install the 2019b version but the issue might be because o...

6年以上 前 | 0

回答済み
Is the matlab license linked to the MAC address?
Contact your sales representative to get detailed understanding about your license terms. If you don’t know who your sales repre...

6年以上 前 | 0

回答済み
Matlab 2019a installation error
Contact your sales representative to get detailed understanding about your license terms. If you don’t know who your sales repre...

6年以上 前 | 0

回答済み
Why do I see the error "Something unexpected occurred" when I try to install Simscape Multibody add-on?
For the errors as such you can refer to the explanation given for the similar error, which can resolve it.

6年以上 前 | 0

回答済み
Simulation Data Inspector - hide box around selected plot
As of now there is no way to achieve it, have escalated the issue to the concerned development team.

6年以上 前 | 0

| 採用済み

回答済み
matlab code for qpsk digital modulation in mimo
I understand your question as, you need to develop MIMO system using QPSK as the modulation type, which doesn’t deviate from the...

6年以上 前 | 0

回答済み
Why did my matlab skript become super slow
Hi Christian, Since the script is not attached couldn’t give you apt solution, Few possibilities might be due to other proce...

6年以上 前 | 0

回答済み
Coefficient and Formatting Help
You may look into the documentation here and there are sample scripts to execute differential equations at the end.

6年以上 前 | 0

回答済み
Why is fmincon slower in comparison to other solvers?
That might be one of the reasons, however you may try Nondefault option of Algorithm as ‘sqp’, which can be sometimes faster. M...

6年以上 前 | 0

回答済み
how can i prelocate arrays
Pre allocating arrays may not solve your problem, as the error msg states you are indexing array ”u” using either negative integ...

6年以上 前 | 0

回答済み
Signal Processing Align Error
Hi Sandeep: You need not check delay to use alignsignals since it doesn’t make any difference by changing order of argument...

6年以上 前 | 0

回答済み
plotting offset between data
Hi Boutros, If you mean to plot the deviation of the data between all possible pair this is how you can realize the solution f...

6年以上 前 | 1

| 採用済み

回答済み
Matlab cannot identify the mex function
You are trying to use mex file generated for mac OS (as I see in the link which you provided) which doesn’t work on platforms ot...

7年弱 前 | 1

回答済み
how to plot contours of a function defined on a 3d mesh. Plotting has to be done on the mesh not under the mesh as shown in following figure
You may use contour3 function to plot contours at different heights, look in to this doc for further information.

7年弱 前 | 0

さらに読み込む