Respondida
Why is it always showing an error as phi is an undefined function for input argument type char ??
Sofiya, in your code above some of the variable names contain empty spaces (if the copy-paste worked), which is not valid. E.g. ...

más de 11 años hace | 0

| aceptada

Respondida
adding matrices with different dimensions
Dimitrios, you mean something like X = 1:50; theta = (1:180)*pi/180; mat = repmat(X',1,numel(theta)) - repmat(sin(...

más de 11 años hace | 0

Respondida
Attempted to access y(5); index out of bounds because numel(y)=2.
Jeppe, if I am not mistaken, |derivNL| defines a system of differential equations. If that's the case, change y = zeros(2,1...

más de 11 años hace | 0

Respondida
Figure ploting data problem
Giorgi, add after the |plot| command set(gca,'XTick',x,'XTickLabel',matrix1) to change the tick labels.

más de 11 años hace | 0

| aceptada

Respondida
vectors must be the same lengths error with subplot
Anna, you need to define |x1| and |x2| first before you can use the variables to compute |y1| and |y2|. Use something like x...

más de 11 años hace | 0

Respondida
get on click coordinates from a plot (multiple times)
Hello Max, check out this <http://www.mathworks.com/matlabcentral/answers/125687-update-vector-values-and-return-to-the-program#...

más de 11 años hace | 2

| aceptada

Respondida
Make my code for taking norm efficient
Muahmmad, why don't you read in all data from the Excels files at once (in other words you are only calling |xlsread| twice) and...

más de 11 años hace | 0

| aceptada

Respondida
ode45 not enough input argument
saramatlab, use function my_ode() %main code T0 = 293; T1 = 300; Tf2 = 293; a = 0.2; R = 1; % not define...

más de 11 años hace | 0

| aceptada

Respondida
What's the problem ? Help me
Nguyen, you probably do not have access to the Symbolic Math Toolbox. Use ver at the command prompt to get a list of all ...

más de 11 años hace | 0

Respondida
Wrong equastion of XY dependence
Use, x = -5:0.1:15; % create a vector x, element spacing: 0.1 a = 1; b = 12; c = 2.4; r = 1; y = -1*(a-b*(((x)-r...

más de 11 años hace | 0

| aceptada

Respondida
How to find the first 3 roots of sin(x)+0.5=0 bigger than zero? (Multiple roots)
Efe, that looks like a trick question... |sin(x)+5| cannot be equal to zero, since |sin(x)| is between -1 and +1.

más de 11 años hace | 1

| aceptada

Respondida
Simple Undamped Forced Vibration Problem
bugatti79, your code looks fine. In other words, you correctly implemented the differential equation and, yes, MATLAB does retur...

más de 11 años hace | 0

Respondida
How to plot a 3d plot (surf) from an XYZ table, X and Y coming from for loops?
hibou, use X = reshape(prev(:,1),[],2); Y = reshape(prev(:,2),[],2); Z = reshape(prev(:,3),[],2); surf(X,Y,Z)

más de 11 años hace | 0

| aceptada

Respondida
how to plot a specific column of a matrix
Amin, use plot(mymat(:,2)) where |mymat| is the matrix.

más de 11 años hace | 6

Respondida
time dependent parameter in ode-function matlab
Sejo, one fairly clean approach would be to split the integration interval: |[tdown 10),[10 11],(11 tup]| and call |ode45| three...

más de 11 años hace | 0

| aceptada

Respondida
How to combine two plots into one with separate markers
Jimmy, as a very efficient approach (if you only need to do it once) I recommend a simple copy-paste: # Open both figures # ...

más de 11 años hace | 26

| aceptada

Respondida
How to restore simulink model from the subsystem?
Hello Gautam, you can <http://www.mathworks.de/de/help/simulink/ug/expand-subsystem-contents-1.html expand> the subsystem. This ...

más de 11 años hace | 0

| aceptada

Respondida
Solving two systems of DEs using the ode45 function.
Vassil, check out function my_ode() alpha0 = 1; alpha1 = 1; beta0 = 1; beta1 = 1; lambda = 1; sigma = 1; pa...

más de 11 años hace | 0

| aceptada

Respondida
Rounding of a number/ text file format
missC, you could use instead x = 1:5; fid = fopen('corner.txt','w'); fprintf(fid,' %d\n',x); % > %d: write integer v...

más de 11 años hace | 0

| aceptada

Respondida
How can I change the line color in a graph using plot?
vivek, check out the <http://www.mathworks.de/de/help/matlab/ref/plot.html#inputarg_LineSpec doc> for starters, e.g. x = 0:0...

más de 11 años hace | 0

| aceptada

Respondida
Bug in matlab R2012b version
Scarzo, that's not a bug. Check out this <http://www.mathworks.de/matlabcentral/answers/69-why-does-1-2-3-1-3-not-equal-zero ans...

más de 11 años hace | 1

Respondida
Need to do ode45 for various values iteratively
Muahmmad, you are almost there. Use a loop and something like function myode() alpha = 10:15; figure hold all for ii...

más de 11 años hace | 0

| aceptada

Respondida
Is there a way to create all m files with already filled in some predetermined lines that are needed for every file like clear all; close all; author name etc?
Seetha, check out this <http://www.mathworks.de/matlabcentral/fileexchange/27132-automatic-template-for-new-functions File Excha...

más de 11 años hace | 2

| aceptada

Respondida
NI-DAQ device not recognised
Hello Helen, have you installed the NI-DAQmx Support Package? You can get it either from the MathWorks Hardware Support <http://...

más de 11 años hace | 1

| aceptada

Respondida
Error using dsolve function while solving differential Equation
Preethika, I do not know how you implemented it, so here is one approach: syms y(x) Dy = diff(y); D2y = diff(y,2); %...

más de 11 años hace | 0

Respondida
Can you share meeting materials from the MATLAB & Simulink Racing Lounge?
Yes, the material is available on the MathWorks Formula Student Germany <http://www.mathworks.de/academia/student-competitions/f...

más de 11 años hace | 0

| aceptada

Respondida
Subplots and thier Position (Expert needed)
Max, are you referring to cols = round(Ncam)/2+1; (I believe not)? If so, the code first divides by 2 and then adds 1 to ...

más de 11 años hace | 0

| aceptada

Respondida
SUSPENSION MODEL NOT WORKING PROPERLY!
Jacobo, if it's supposed to be two stable, coupled mass-spring-damper systems, the signs are probably off. Check out the attache...

más de 11 años hace | 0

| aceptada

Respondida
Store all iteration loop outputs in a matrix
UTS, use instead m(i,:) = [i j k]; The output is an array |m| with 10 rows, 3 columns.

más de 11 años hace | 16

| aceptada

Respondida
fminsearch error regarding matrix dimensions
MiauMiau, the function |funct| has only one dependent variable, |x|, correct? If so this needs to be reflected in the function c...

más de 11 años hace | 1

| aceptada

Cargar más