답변 있음
Cyclic Redundancy Check function
As far as I can see, crcreceive.m is missing a portion of code present in the FullCode divisor = bitshift(divisor,messageLength...

8개월 전 | 0

| 수락됨

답변 있음
Creating a cosine oscillation ( cos(2 * pi * f * k * T) )
Hi Ahmad, you can can think of k*T as a time vector, one example is: k = 1:2000; T = 1/Fs; tf = k*T; y = A*cos(2*pi*f*k*T); ...

8개월 전 | 0

| 수락됨

답변 있음
Hello, why Matlab does not check for second condition and give an answer without checking second condition after AND short circuit operator?
Hi Aknur, in the example below, the part after && is evaluated. BTW, operators || and && are so called short-circuit operators...

8개월 전 | 0

| 수락됨

답변 있음
what is r. in the pagerank algorithm
Hi Kellie, you probably mean on the following equation: r = (1-P)/n + P*(A'*(r./d) + s/n); % r is a vector of PageRank scores...

8개월 전 | 0

답변 있음
Why do we get different results here?
@Sadiq Akbar I'm puzzled too. In general, the results are not correct event sometimes are. For example, the result is wrong for...

9개월 전 | 0

답변 있음
How to express this equation to convert y values to a new vector and plot as a function of x?
websave('test.xlsx','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1321170/test.xlsx'); data = xlsread('test...

9개월 전 | 0

답변 있음
Solving for Variables contained an interval
fun = @(x) (sin(x) .* (2.* cos(x) - 1)) ./ (1 + 2 .* cos(x)); % function x0 = [0.1 2]; % initial interval x = fzero(fun,x0) ...

9개월 전 | 1

답변 있음
Why do we get different results here?
Can you try with the following ByAskic.m function: function e = ByAskic(b,u) % u = [10 20 30 40];b = u; N = 10;%6; % Tx anten...

9개월 전 | 0

답변 있음
MATLAB Newton Raphson method with array - Stephan problem
Is this what you wanted to achieve? clear clc close all a0 = -0.00401; a1 = 1.18669; a2 = -0.14559; a3 = -0.33443; a4 = ...

9개월 전 | 0

| 수락됨

답변 있음
How to compute the AUC (Area Under Curve)?
I think this would be a correct way to do so, but I'm not 100% sure. It seems correct from the ROC diagrams: [x,t] = iris_datas...

9개월 전 | 1

| 수락됨

답변 있음
How to use rlocfind in root locus.
You could start with this: help tf help rlocfind

9개월 전 | 0

| 수락됨

답변 있음
How do I preallocate for speed in the following code?
The most basic approach is given here: clc clear N = 9; S = 18.1; AR = 7; lambda = 0.8; ...

9개월 전 | 0

답변 있음
What is the difference between Step size and Sample Time ?
According to Matlab's documentation, The sample time of a block is a parameter that indicates when, during simulation, the bloc...

9개월 전 | 0

| 수락됨

답변 있음
Is it possible numerical problem ?
This is called a round-off error caused by floating point arithmetic. Please read this (it is for Python, but equally applicabl...

9개월 전 | 0

답변 있음
ploting electric field versud time
This is how can you read the contents of the file into variables. data_file = websave('phi_theta.txt','https://www.mathworks.co...

9개월 전 | 0

답변 있음
Integral of matrix determinant
I would do it symbolically: syms x f = det([1,x;0,2]); Q = int(f,0,1)

9개월 전 | 0

답변 있음
create a shuffleable datastore
A different approach would be to read csv file in a table and create datastore from the table. this datastore issubsetable and ...

9개월 전 | 0

| 수락됨

답변 있음
Absurd result using 'integral2' with non-"centered" functions
@Torsten already answered, please keep in mind that integral2 still performs numerical integration. have a look at this: clear...

9개월 전 | 1

답변 있음
Converting string to integer - indexing and multiple trials
If you look into your data in Matlab, you will see that CodeTimes is actually an array of doubles and not strings: cc = load (w...

9개월 전 | 0

| 수락됨

답변 있음
How do I properly use the "while", "for", "loop" command in this problem?
A = [71.213; 74.499; 79.175; 54.163; 83.008; 52.615]; B = length(A); %size of column (number of elements) %H = A(i); %Variable...

9개월 전 | 0

답변 있음
Legends in Bode plots do not support subscripts
g1=tf([1 0],[5 1]); bode(g1) title('\Gamma_h vs \omega') h = legend('$\Gamma\_h$','fontsize', 12); set(h, 'Interpreter', '...

9개월 전 | 0

답변 있음
An unexpected discrepancy between xcorr, xcov and autocorr
When in doubt always read the documentation. doc xcov Matlab functions are very good documented. For example, you can read: x...

9개월 전 | 0

답변 있음
Why I couldn't plot this graph f=(@(x,y) (x.^2)+(x*y)+(y.^2)<=68200.^2/3);
And if you really insist on 68200^2/3, then this code will provide output f=@(x,y) x.^2+x.*y+y.^2-68200^2/3; fimplicit(f, 'b'...

9개월 전 | 0

답변 있음
Can I make this line of code smaller?
XBest=[2, 3, 4]; XBest(isempty(XBest)) = 1e8; XBest XAest = []; XAest(isempty(XAest)) = 1e8; XAest

9개월 전 | 1

| 수락됨

답변 있음
Why the 2nd code does not behave like the 1st code?
This is how I would modified the code to execute for any M r N dimensions: clear clc u = [10 20 30 40]; b = u * (1+0.5*randn...

9개월 전 | 1

| 수락됨

답변 있음
Unable to perform assignment because brace indexing is not supported for variables of this type
You need to provide more context. For example, this is OK. run = cell(10,1); R = 244:300; Y = 1:300; run{1} = Y(1:R(1)) ru...

9개월 전 | 0

답변 있음
How to get subset of data from given thresholds?
Did you try this approach? DNS = dat(:,9); NZE = dat(:,10); PER = dat(:,11); % 1. sub = dat(NZE>0.25,:); %2. sub = da...

9개월 전 | 0

| 수락됨

답변 있음
How to read a specially structured data file with different structures
I would suggest the follwoing solution: A = readtable('test.5p', 'ReadVariableNames', false, 'FileType', 'text'); nr_rows = si...

9개월 전 | 1

| 수락됨

답변 있음
Why the 2nd code does not behave like the 1st code?
It is because in the function "myfunAskMathworks.m" you have function handles defined. So, you are sending the function handle a...

9개월 전 | 1

답변 있음
How to read a specially structured data file
I would also like to suggest my naive and inefficient approach: A = dlmread('testfile5p.txt'); nr_rows = size(A,1); A2 = zero...

9개월 전 | 1

더 보기