답변 있음
How to make a 3D bar graph for non-continuous data?
_I'm trying to make a 3D bar graph using the function bar3_ And it is not giving the desired result? What is wrong with: ...

대략 6년 전 | 0

답변 있음
Solving large algebraic riccati-like problem
Why don't you use the matlab function for Riccati equation? See <https://fr.mathworks.com/help/control/ref/care.html>

대략 6년 전 | 0

답변 있음
how to obtain the parameters of the step response within matlab?
Look at the <https://mathworks.com/help/control/ref/stepinfo.html stepinfo> command.

대략 6년 전 | 0

답변 있음
How do I call a function from the MATLAB Editor into AppDesigner
I don't know exactly what you mean by "without changing the internals of the functions", but in the _CodeView_ of AppDesigner, y...

대략 6년 전 | 0

답변 있음
Summing elements of an array
You can use either sum(cell2mat(P)) or sum([P{:}])

6년 초과 전 | 0

답변 있음
How to use latex's \mathcal{Z} in the axis labels of a Matlab figure?
title('$\mathcal{Z}$','Interpreter','latex')

6년 초과 전 | 2

답변 있음
How to create 4 axis on one single plot?
Maybe this <https://fr.mathworks.com/help/matlab/creating_plots/graph-with-multiple-x-axes-and-y-axes.html solution> is what you...

6년 초과 전 | 0

답변 있음
Reshape and rearrange elements of a matrix
For your example, you could use something like this: A=[1 2 3 4 5 6; 7 8 9 10 11 12]; B=[reshape(A(:,1:end/2),2,3);reshap...

6년 초과 전 | 0

답변 있음
How to take first character of Alphabet
One way to do it : regexpi(data,'[a-u]','match','once') ans = 7×1 cell array {'A'} {'A'} {'A'} ...

6년 초과 전 | 0

답변 있음
help me loop i cant understand it
Try this to see if it is gets clear to you: for q1 = [1 2 -1;3 0 2] for q2 = [2 1] a = q2*q1; fpri...

6년 초과 전 | 0

답변 있음
Combine three different set bar graphs in one graph
You can group your 3 bar graphs using something like this: b=bar([leak_22;leak_32;leak_45]); For your example, you will...

6년 초과 전 | 0

답변 있음
MIMO feedback loop syntax
Did you try with the <https://fr.mathworks.com/help/control/ref/feedback.html feedback> function ?

6년 초과 전 | 0

답변 있음
multiply mimo transfer function in Simulink
In figure 1, EGR is not the sum of the outputs of R11 and R12, but is a vector made of [outputR11 output R12]. So in your si...

6년 초과 전 | 0

답변 있음
matlab code to solve ELIPTIC PDE
I recommend you to read <https://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-...

6년 초과 전 | 0

답변 있음
How to make a GUI (guide) figure
Have a look here: <https://mathworks.com/help/matlab/guide-or-matlab-functions.html> <https://mathworks.com/videos/creatin...

6년 초과 전 | 0

답변 있음
Subscript indices must either be real positive integers or logicals.
Did you define _i_ before calling this line ? Term3=(sumnr(X,G,tau,i)-X(i)*G(i,i)*tau(i,i))/(sumdr(X,G,i)-X(i)*G(i,i)); ...

6년 초과 전 | 0

답변 있음
How can i find the index of a value in a matrix?
In the _find_ command, you can use: [row,col,v] = find() or you can use sub2ind and ind2sub functions to convert between...

6년 초과 전 | 0

답변 있음
Move all NaN to end of matrix columns.
if you want to move all NaN to end of matrix you can use: sort(A) ans(:,:,1) = 1 1 2 2 3 3...

6년 초과 전 | 0

답변 있음
Subplot for for loop
The help of <https://mathworks.com/help/matlab/ref/subplot.html> says: _subplot(m,n,p) divides the current figure into an m-b...

6년 초과 전 | 1

답변 있음
How to add a "if not a number" expression to GUI error dialog
Are you searching for somethink like <https://mathworks.com/help/matlab/ref/isnan.html isnan> ? if isnan(P) errordlg(...

6년 초과 전 | 0

답변 있음
How to solve error 9
Did you read <https://mathworks.com/matlabcentral/answers/99067-why-do-i-receive-license-manager-error-9> ?

6년 초과 전 | 0

답변 있음
A = A(50:99,50:99) in matlab
Did you read <https://mathworks.com/help/matlab/math/matrix-indexing.html this> ? How is the matrix _A_ defined before this l...

6년 초과 전 | 0

| 수락됨

답변 있음
How to run embedded Matlab function in Simulink periodically
You can access the simulation time in your m function using : get_param('YourModel','SimulationTime') or you can use the...

6년 초과 전 | 0

| 수락됨

답변 있음
Could not find or load the Qt platform plugin "xcb".
Thanks for your answer. I got the same PATH from the terminal and from Matlab but on the linux terminal I don't have any "LD_...

6년 초과 전 | 0

답변 있음
How to define transparency of errorbar?
Maybe you will find this interesting : <https://mathworks.com/matlabcentral/fileexchange/26311-raacampbell-shadederrorbar> ...

6년 초과 전 | 0

답변 있음
How to generate linear frequency modulation signal in matlab
Did you read <https://mathworks.com/help/phased/ug/linear-frequency-modulated-pulse-waveforms.html this> ?

6년 초과 전 | 0

답변 있음
Scale the axis in a contourf plot/ change axis location
Maybe something like this : contour(...); ax=gca; ax.XAxisLocation='top';

6년 초과 전 | 0

답변 있음
how to find the transpose
for any vector or matrix _A_, _A'_ gives the transpose of _A_.

6년 초과 전 | 0

답변 있음
Matrix filling with for loop
For loop documentation : <https://fr.mathworks.com/help/matlab/ref/for.html?searchHighlight=for&s_tid=doc_srchtitle> f = ze...

6년 초과 전 | 4

| 수락됨

답변 있음
Multiplying m*m*N matrix internally
prod performs element-wise multiplication. If you want matrix multiplication, you can use something like : A = ra...

6년 초과 전 | 0

| 수락됨

더 보기