回答済み
what is the power of noise?
you can find the definition of the snr for example in the snr() documentation

5年弱 前 | 0

回答済み
How to display small values in boxplot
for this case a logarithmic scale would be nice. the only problem is that you have 0 values which woul map to -inf. you could se...

5年弱 前 | 0

| 採用済み

回答済み
Figure Labels and Titles not showing up
call bar() first and set the labels afterwards

5年弱 前 | 0

| 採用済み

回答済み
Get the real function output to simplify without the real function in the output.
realPart=z-imag(z); has no real() function

5年弱 前 | 0

回答済み
Creating an automation script that will run a series of problems
your i will run through each character of your string you combined with your [ ] (like horzcat), it will be P, then r, then o an...

約5年 前 | 1

| 採用済み

回答済み
how to put the same value in a number of lines in the first column of a matrix and different values in the second column (values coming from vectors)
for the first column have a look into repelem(), for the second column have a look into repmat() if you need more detailed he...

約5年 前 | 0

| 採用済み

回答済み
How to store words from a string in a cell array as a multiple strings
use the function strsplit() here with Delimiter ',' if your cell has name a, use strsplit(a{1},',')

約5年 前 | 1

| 採用済み

回答済み
How to convert total number of pixels into centimeter square?
without further knowledge it is not possible. imagine having a photo of an landscape or of your own hand, the image has same siz...

約5年 前 | 0

| 採用済み

回答済み
Create a generic matrix array (coordinates ) based on input data in a specific direction as attached in the photo
here a quite manual solution, there may be something easier width=2.8; height=1.5; pointsAlongY=4; pointsAlongX=4; dx = wid...

約5年 前 | 0

| 採用済み

回答済み
how to separate objects in image using matlab
if your input image has white background you can easily generate a binare image after conversion to grayscale and using threshol...

約5年 前 | 0

回答済み
Saving data after each iteration
something similar to meanData=zeros(1,numel(fileList)); for fileNr=1:numel(fileList) load(.....,myData); ...

約5年 前 | 0

| 採用済み

回答済み
Could anyone help me to solve the error undefined operator
YPred and/or YTest are cells which can contain any kind of data, also tables, graphical objects. for that reason there is no ope...

約5年 前 | 0

回答済み
Shouldn't bwconvhull() be idempotent?
ideally it should. already the shape you provide in the original is convex, but the result of the first call of bwconvhull and t...

約5年 前 | 1

回答済み
How to get luminance of an image?
concerning luminance have a look into <https://de.mathworks.com/matlabcentral/answers/60793-mean-luminance-values-of-an-image th...

約5年 前 | 0

回答済み
Reconstruct the initial image with idct2
have a look into <https://de.mathworks.com/matlabcentral/answers/843390-how-wa-can-discard-75-of-small-coefficients-after-get-th...

約5年 前 | 0

| 採用済み

回答済み
Hi, How can I make the axis look like in the attached figures?
what do you mean exactly? if you mean the logarithmic x axis then you can use semilogx() function for plotting

約5年 前 | 0

回答済み
How to create a struct
use for ii = 1 : size(rock_code,1) ROCK.(str_rock{ii}) = sub_rock{1,ii}; end at the end if sub_rock cell entri...

約5年 前 | 0

| 採用済み

回答済み
How to solve this simple matricial system?
you have to left multiply the matrix not right multiply inv(A)*A*u=inv(A)*h*G; leading to I*u=inv(A)*h*G; with I...

約5年 前 | 1

回答済み
I want to learn Matlab coding , I try a lot but very weak .How to improve my Matlab coding and simulink ?
you can have a look into edx.org, there are often courses regarding matlab. another within mathworks possibility is <https://...

約5年 前 | 0

| 採用済み

回答済み
plot to specific iteration steps in while loop
if you plot on every step and you want to watch at a specific step you can place an if statement together the <https://de.mathwo...

約5年 前 | 0

回答済み
Looking for a Low Pass Filter ( < 100 Hz) that will work in Octave
i never used octave yet, but you can have a look into a very easy low pass: the moving average filter. depending on the number o...

約5年 前 | 0

回答済み
how to update matlab 2010a to 2021a ?
there is no upgrading available, you have to install new matlab and also the toolboxes

約5年 前 | 1

回答済み
how to extrapolate information from two columns?
i suggest to use the interp1() function twice, once with time and x and once with time and y. you can give the query point to e...

約5年 前 | 0

| 採用済み

回答済み
How to call n numbers from a collumn
use the colon (:) operator plot(data(1:8));

約5年 前 | 0

回答済み
Two Same max Values of a Array
get the maximum value and search for entries equal to that value maxEntriesIdx=find(A==max(A)); if you want to increase ...

約5年 前 | 0

| 採用済み

回答済み
Is there a simple way to omit legend entries?
you can do your normal graph plotting and one of your reference lines and then you can set the auto update property of the legen...

約5年 前 | 1

| 採用済み

回答済み
Finding angle between 2d vectors with a four quadrant approach
have a look into the atan2() function which takes the y and x coordinate of your vector

約5年 前 | 0

| 採用済み

回答済み
Hi everyone, can anybody help me to plot?
do you execute your code in a script that is called 'plot'? then it will be difficult to use the default matlab plot command ins...

約5年 前 | 0

回答済み
Choose the lowest value and jump into the correct if
use something like [~,idx]=min([A B C]); if idx==1 % A smallest elseif idx==2 % B smallest else % C snal...

約5年 前 | 0

回答済み
finding closest value in specific row and columm and take value intersecting these.
first thing: you confused rows and columns, you have 5 rows and 4 columns, not the other way around (at least it appears like th...

約5年 前 | 1

| 採用済み

さらに読み込む