Risposto
How can I replace data on the axis to become u horizontal and y vertical?
Use - plot(u1,y,'-',u2,y,'--',u3,y,'-.',u4,y,':','LineWidth',2) Note the syntax for plotting x and y data using plot is - ...

circa un mese fa | 0

Risposto
Not able to plot a particular relation.
Remove all the "syms" call. They are not required.

circa un mese fa | 1

| accettato

Risposto
How to export script to text file ?
export() does not support writing data into files. Use writematrix instead - a = "good"; b = "morning"; c = "babynumber"; ...

circa un mese fa | 0

| accettato

Risposto
Having issues with plotting and supposedly there is a size problem?
(I assume that you have written this code for an assignment, which requires the variable x to be of size [1 200], which should b...

circa un mese fa | 0

| accettato

Risposto
Plot can no longer recognize my variable
Because there is no such variable named yModel before that plot() is called. You have made a typo, it should be yB_Model. Al...

circa un mese fa | 0

| accettato

Risposto
how to generate random number
randi only generates integers. Use rand instead. rand() generates numbers in the range (0,1). Get the desired range by modifyin...

circa un mese fa | 0

Risposto
Trouble with handling values in anti-diagonal of a square matrix
1 - Preallocate using ones() instead of zeros() and remove the else part. 2 - Update the condition for checking the anti-diagon...

circa un mese fa | 2

| accettato

Risposto
Plotting a function inside of another function with no outputs
Firstly, do not use built-in functions as names for variables (or scripts for that matter). You are using plot as a variable nam...

circa un mese fa | 1

Risposto
How can I integrate by using bessel function
You need to provide the integrand as a function handle, see here - https://in.mathworks.com/help/matlab/ref/integral.html#btbbkt...

circa un mese fa | 0

Risposto
how to get multiple values of multiple columns from a single column?
Use logical indexing - Find Array Elements That Meet a Condition, for columns 2-100 (Assuming the value 40 occurs same number o...

circa un mese fa | 0

Risposto
Making loop for a function 'xlsread'
Use readmatrix instead of the deprecated xlsread(). q = dir('Data/*.csv'); nfiles = numel(filenames); for k=1:nfiles %...

circa un mese fa | 2

| accettato

Risposto
Solve is not providing correct solution
When you use vpa on symbolic numbers, you lose precision. When you convert the symbolic numbers to double precision values usi...

circa 2 mesi fa | 1

Risposto
the matrix only works till days= 16 then when the days=17 or bigger the output is 0 on all the values in the matrix
In the default display format (i.e. short), the numbers are displayed with 4 digits after the decimal. Thus when the differenc...

circa 2 mesi fa | 0

Risposto
How to interpolate only NaN values with one hole?
fillmissing is a better fit here - %Note that the data you have provided is not valid %I have added another element to make i...

circa 2 mesi fa | 2

| accettato

Risposto
How to vectorize this nested for loop?
%Original Approach b=0; min1 = 1; max1 = 1; pair = []; for n = -min1:max1 for m = -min1:max1 if n+m...

circa 2 mesi fa | 1

| accettato

Risposto
Can't quite figure out why my syms is giving me an error
The error is not with the symbolic part of your code, but how your code is arranged/structured. If any function(s) is(are) defi...

circa 2 mesi fa | 1

| accettato

Risposto
Finding array index for a given array element does not work all the time
Welcome to the world of floating point numbers, where not all numbers can be represented exactly in binary form. See this threa...

circa 2 mesi fa | 0

| accettato

Risposto
I can't really find why matlab won't plot this equation, I run into an error as soon as i try to run it
You need to use times, .* for multiplying arrays (of compatible sizes) element-wise - As the error states, mtimes, * is reserv...

circa 2 mesi fa | 1

| accettato

Risposto
getting the nth term out of a sequence
As @Walter has warned, a carriage return character (\r) is being read along with the data - % Define the input and output file...

circa 2 mesi fa | 1

Risposto
Changing from logarithmically spaced
fs = 20e3; numFilts = 32; filter_number = 5; order = 4; CenterFreqs = logspace(log10(50), log10(8000), numFilts); figure p...

circa 2 mesi fa | 0

Risposto
I am trying to input my found critical point into the second derivative, but when I double it to get an actual value, I get an array of zeros.
"... but when I double it to get an actual value, I get an array of zeros." That is because dW is defined as an equation, not a...

circa 2 mesi fa | 0

| accettato

Risposto
How to simplify a symbolic expression sum of terms involving the Heaviside function
For that you have to assume the same for 'm' as well - sympref('HeavisideAtOrigin', 1); syms m n positive integer s(n) = sym...

circa 2 mesi fa | 0

| accettato

Risposto
how to download & install cvx_begin toolbox
Follow the instructions provided here - https://cvxr.com/cvx/download/

circa 2 mesi fa | 0

Risposto
trying to write complex equation with parentheses
You were missing a pair of parenthesis - syms gamma M k = gamma; Ma = M; % ...

circa 2 mesi fa | 0

Risolto


Orthogonalize a 2x2 matrix using the Gram-Schmidt process
Use the Gram-Schmidt process to orthogonalize two linearly independent column vectors. Return two output column vectors that are...

circa 2 mesi fa

Risolto


Orthogonalize 3 column vectors using the Gram-Schmidt process
Use the Gram-Schmidt process to orthogonalize three linearly independent column vectors. Return three output column vectors that...

circa 2 mesi fa

Risposto
条件に沿って数値を変換する
%Random data for example in = randi(11, 1, 10) out = discretize(in, 0:11, [1 2 2 2 2 3 4 3 4 3 4], 'IncludedEdge', 'right')

circa 2 mesi fa | 2

Risolto


Update course numbers and abbreviations
Suppose that the educational institution where you teach purchases new software to handle many essential functions, including co...

circa 2 mesi fa

Risposto
What is the fourth array element denotes (specified as NaN in code below) in the input to fcm function of matlab 2019?
From the documentation of fcm(), for the syntax [centers,U] = fcm(data,Nc,options) - "If any element of options is NaN, the defa...

circa 2 mesi fa | 1

| accettato

Risposto
How to define a for loop for given FINDPEAKS problem ?
Try this - n=3; B = [num2cell(A,1); cell(n,2)] for k=2:n [B{k,1}, L] = findpeaks(B{k-1,1}); B{k,2} = B{k-1,2}(L); ...

circa 2 mesi fa | 1

| accettato

Carica altro