Respondida
Matrix input and matrix variables in minimization of an objective function
Hi Hannaneh, you need to have one vector of variables, not a matrix. So * Your x0 should be ones(3*N,1), not ones(N,3) * ...

casi 11 años hace | 0

| aceptada

Respondida
faster way to read formatted ascii
Hi, as an alternative to textscan, you can continue using the importer as you do but instead of hitting the import data click...

casi 11 años hace | 0

Respondida
turbine and compressor maps
Hi, to get started I would recommend to use reshape to convert your vectors to matrices, something like linenoMatrix = r...

casi 11 años hace | 0

| aceptada

Respondida
Opening multiple excelworksheets with stringnames from a cell
Hi Thomas, the loop is not bad, but assignin and eval are in this case, that's right. My suggestion would be to do something ...

casi 11 años hace | 0

| aceptada

Respondida
use 'bernsteinMatrix' from MATLAB works in 2014(macos) and 2015(macos) not 2013(Win7)
Hi Konstantinos, in which "2013(Win7")? According to the documentation in R2015a it was added in R2013b. Could it be you are ...

casi 11 años hace | 0

| aceptada

Respondida
Indexing a cell, ignoring empty inputs?
Hi Thomas, yes it does. Do you really look for OECF in each string, or do you want to compare to OECF? For your example at le...

casi 11 años hace | 1

| aceptada

Respondida
Extract the value of a signal at t=X sec in Simulink
Hi, a simple way is using an enabled subsystem: * Feed the signal to the inport * Take the clock block, feed into "Compar...

casi 11 años hace | 1

| aceptada

Respondida
RK4 error for the code
Hi, the error tells you, that the first argument to call rk4 should be a function that can be called, so either the name as a...

casi 11 años hace | 0

| aceptada

Respondida
str2func and anonymous functions
Hi, the str2func does not work in this case, as you observed. But the documentation does not really suggest, that it should w...

casi 11 años hace | 0

Respondida
how to connect MS Access database with matlab
Hi Reema, accessing databases works by using the functions from the <http://www.mathworks.com/products/database Database Tool...

casi 11 años hace | 0

| aceptada

Respondida
Wie kann ich in den UnitDelay Block einen Initialwert angeben, der in meinem Modell vorher berechnet wird, also scalar measurement ist??
Hi Max, within the same model? "Da beißt sich die Katze in den Schwanz" ... ;-) You might setup a second model that comput...

casi 11 años hace | 0

| aceptada

Respondida
How to write this program in MATLAB ? Can we convert JAVA code into MATLAB code?
Hi, take a look at the doc for "object oriented programming", or doc classdef Write for each of the Java classes a co...

casi 11 años hace | 0

Respondida
Plotting the heat equation using the explicit method
Hi, if the bar is in the negative x as well, I would rewrite the loop entirely to be more like MATLAB style, something like ...

casi 11 años hace | 0

| aceptada

Resuelto


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

casi 11 años hace

Respondida
Plotting the heat equation using the explicit method
Hi, when you set the value for u, you need to replace if x>0 by if x(j)>0 Then you will see, that your u look...

casi 11 años hace | 0

Respondida
Running mcc from windows cmd
Hi, usually you should be able to call the mcc directly from CMD without using "matlab -r". Did you try? Maybe you need to se...

casi 11 años hace | 0

| aceptada

Respondida
Why does appear in a 3D mesh plot lines that should not be there?
Hi, might be a problem with your OpenGl driver ... You could try either set(gcf, 'Renderer', 'zbuffer') or to switch ...

casi 11 años hace | 0

| aceptada

Respondida
How do I plot three columns of data (x, y, dependent_variable)?
Hi, in your case usually a 3D view is the natural one. Alternatives would be to show the third column as the color (using sca...

alrededor de 11 años hace | 1

Respondida
Removing elements from a cell array
Hi, something like this? intpop{4,1}(2,:) = [intpop{4,1}(2, setdiff(1:size(intpop{4,1},2), 3)) {[]}] Titus

alrededor de 11 años hace | 0

| aceptada

Respondida
Saving some part of a cell array
Hi, you should be able to index into data without destroying data or doing copies: dataTruncated = data(1:8); save some...

alrededor de 11 años hace | 1

| aceptada

Respondida
Boolean matrix in mex file
Hi Alessandro, use mxGetLogicals instead of mxGetPr ... Titus

alrededor de 11 años hace | 0

| aceptada

Respondida
'save as' command
Hi Valentino, use uiputfile for this task, something like [fName, pName] = uiputfile('*.mat'); if fName==0 % user ...

alrededor de 11 años hace | 2

| aceptada

Respondida
No Java Builder package working
Hi, just a guess: you used Java JDK 1.8.x? You need to use JDK 1.7.x ... Titus

alrededor de 11 años hace | 1

| aceptada

Respondida
How to work with interpolation function?
Hi, in your file B67 is equal to B68. Remove one of the lines. Titus

alrededor de 11 años hace | 0

| aceptada

Respondida
Fibonacci sequence, slightly different.
Hi, I don't see what this has to do with Fibonacci though ;-). But you don't need the loop, just do something like seq =...

alrededor de 11 años hace | 1

Respondida
link x-axis from one figure with y-axis from another figure
Hi, using linkaxes (or the more general linkprop) this will not work, because only the same property can be linked. What shou...

alrededor de 11 años hace | 0

Respondida
Undefined function 'wlgrid' for input arguments of type 'char'.
googling "wlgrid MATLAB" points you to http://content.oss.deltares.nl/delft3d/manuals/Delft3D-MATLAB_User_Manual.pdf. You will n...

alrededor de 11 años hace | 0

| aceptada

Respondida
i have a recurrence function L(x). I have L1(x), L2(x).... L4(x) as can you see on the image followed. how can I write a matlab program to generate it's different polynoms till L50(x) for example.
Hi Constantin, polynomials are "encoded" as vectors of the coefficients. So you would have (shifting the index by 1): L{...

alrededor de 11 años hace | 0

Respondida
Suppose, v(x) is a user-defined function. How, to get v(-x) which is going to be used in the same code?
Hi, sorry, I don't understand the question. If you have the function, why don't you simply call v(-x)? Or are you looking ...

alrededor de 11 años hace | 0

Respondida
What does this code compute?
It set's all entries in mask, where inside is true, to one. I guess mask(inside) = 1; should do the same in fact. Tit...

alrededor de 11 años hace | 0

| aceptada

Cargar más