Statistics
RANK
322
of 260.656
REPUTATION
224
CONTRIBUTIONS
23 Questions
83 Answers
ANSWER ACCEPTANCE
73.91%
VOTES RECEIVED
39
RANK
of 17.909
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
How can I synchronize two split windows in the editor?
I found a solution: if you split window after highlighting, then both windows demonstrate the same highlighting; if you split wi...
ongeveer 2 maanden ago | 0
| accepted
Question
How can I synchronize two split windows in the editor?
In previous releases, if I highlight function name in, say, left split window, it was automatically highlighted in the right win...
ongeveer 2 maanden ago | 1 answer | 0
1
answerHow to add a right hand y-axis with the same major and minor ticks?
x = -2*pi:0.1:2*pi; y1 = sin(x); y2 = tan(x); yyaxis left hp1 = plot(x,y1); h1 = gca; h1.YTick = -1:0.5:1; set(h1,'XMin...
5 maanden ago | 0
| accepted
Center alignment for tiledlayout
x = -2*pi:0.1:2*pi; y = sin(x); t = tiledlayout(3,6); nexttile([1,2]) plot(x,y) nexttile([1,2]) plot(x,y) nexttile([1,2])...
6 maanden ago | 0
| accepted
Question
Why the matlab editor (Code Analyser) is not warning about changing size by a variable within a loop
In the 2nd example of the following for-loop the variable A definitely changes its size as it does in the 1st example. However, ...
6 maanden ago | 1 answer | 0
1
answerUnable to find explicit solution
Your equation with actual ratio a4/a3 does not have analytical solution. Try to solve it numerically with some tolerance.
7 maanden ago | 0
Add zero decimal digits in order to have all the elements of a matrix with same number of decimal digits
A = magic(3) B = num2str(A,'%.3f\t')
7 maanden ago | 0
How to create a cell array identical in size, but containing cell position in each cell?
A = {[1,2,3,4]; [1,2,5]; [5,6,1,2,4]; [44]} B = cell(size(A)); for k = 1:length(A) B{k} = repmat(k,1,length(A{k})); end
7 maanden ago | 0
| accepted
Why does adding a space give vertcat error?
with a space, [1;1 +1] is interpreted as [1;1, +1]. [1;(1 +1)] will be OK.
9 maanden ago | 1
| accepted
Error using minmax newff
You are using char type variables, i.e filename a = {'abc', 'aa', 'b'; 'abc1', 'aa1', 'b1'} a = 2×3 cell array {'abc' ...
9 maanden ago | 0
Why is signal amplitude so low after applying FFT?
https://www.mathworks.com/matlabcentral/answers/162846-amplitude-of-signal-after-fft-operation https://www.sjsu.edu/people/burf...
9 maanden ago | 0
Array indices must be positive integers or logical values.
if length(c) is an even number, then (length(c)+1)/2 is not an integer
9 maanden ago | 0
Unrecognized function or variable 'snopt'. Error in Untitledidk (line 362) [x, f, inform, xmul, fmul] = snopt(xg, xlwr, xupr, xmul, xstate, ... What is this function
https://github.com/snopt/snopt-matlab Matlab interface for sparse nonlinear optimization software SNOPT. Requires the SNOPT so...
10 maanden ago | 1
Out of Memory. Infinite Recursion.
doc polylog Argument of the polylogarithm, specified as a number, array, symbolic number, symbolic variable, symbolic function,...
10 maanden ago | 0
| accepted
Question
how to use function handles
Instead of the following, I want to use function handles and move if-statments out of the loop: for n=1:10 if a==0 ...
10 maanden ago | 2 answers | 0
2
answersError while using syms in MATLAB AppDesigner
https://www.mathworks.com/matlabcentral/answers/166584-cannot-use-syms-command
10 maanden ago | 0
| accepted
Why am i getting the same error while plotting a function?
doc vpaintegral vpaintegral(f,a,b) numerically approximates f from a to b. vpaintegral(f,[a b]) is equal to vpaintegral(f,a,b)...
10 maanden ago | 0
Question
How do I do this without using try/catch?
I am using waitbar within Run_pushbutton_Callback (GUIDE GUI): function Run_pushbutton_Callback(hObject, ~, handles) try wb =...
11 maanden ago | 1 answer | 0
1
answerArray indices must be positive integers or logical values.
When x=1, then X_s(x-1) = X_s(0), which is not allowed in Matlab x = 1 x = 1 x = 2 x = 3 x = ...
12 maanden ago | 0
Array indices must be positive integers or logical values.
floating point problem; try to use x = round(k/0.2 - 4/0.2 + 1) k = 4.200000000000000 x = 2 k = 4.400000000000...
12 maanden ago | 1
Remove from a vector a certain number of elements
sim3 = sim1; sim3(sim3==sim2) = [];
12 maanden ago | 0
| accepted
Index in position 1 is invalid.
i as an index is not defined in your code, Matlab considers it as 1i by default
12 maanden ago | 0
| accepted
How can i repeat a formula without for loop?
M = [1,2; 3,4]; LM=log(M); A = 1:5; B = num2cell(A); C = cellfun(@(x) {x*LM}, B); D = cellfun(@(x) {exp(x)},C); D{:}
12 maanden ago | 0
| accepted
Make subplot use the full figure on buttondown click.
The following works as you requested. You can of course modify the code in more elegant way with numbering handles as ax(n) etc...
ongeveer een jaar ago | 0
| accepted
How to superimpose two figure, one to bottom right corner of larger.
fig1 = figure(1); % create figure1 pos1 = fig1.Position; % position of figure1: pos1 = [x1, y1, width1, hight1] pos2 = pos1;...
ongeveer een jaar ago | 0
| accepted
Plot of nested for loop for thickness variable
Place figure(1) with a number before for-loop and use plot(results(:,1),results(:,2)) only once. If you use figure() without an...
ongeveer een jaar ago | 0
| accepted
Error using vertcat Dimensions of arrays being concatenated are not consistent.
It seams that if there is a space between the real and imaginary parts of the number, Matlab considers it as two different numbe...
ongeveer een jaar ago | 0
| accepted
uicontrol callback function with single variable
The following works. Though, I cannot explain why function test(~,~,multiple)
ongeveer een jaar ago | 1
How to find points between two intersecting lines?
myData = [X,Y]; y1 = 3 - X; y2 = 2/3*X + 4/3; Y1 = Y(Y < y2 & Y > y1); X1 = X(Y < y2 & Y > y1); % or X1 = X(Y == Y1) myData...
ongeveer een jaar ago | 1
| accepted
Why are these two ways of writing the same integral giving me different results?
Use the option 'ArrayValued',true pot1=kappa*rho1*integral(f,0,pi,'ArrayValued',true);
ongeveer een jaar ago | 0