Beantwortet
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) * ...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 0

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

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 0

Beantwortet
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...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 0

Beantwortet
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 ...

mehr als 11 Jahre vor | 0

| akzeptiert

Gelöst


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...

mehr als 11 Jahre vor

Beantwortet
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...

mehr als 11 Jahre vor | 0

Beantwortet
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...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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 ...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 1

Beantwortet
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

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 11 Jahre vor | 1

| akzeptiert

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

mehr als 11 Jahre vor | 0

| akzeptiert

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

mehr als 11 Jahre vor | 2

| akzeptiert

Beantwortet
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

mehr als 11 Jahre vor | 1

| akzeptiert

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

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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 =...

mehr als 11 Jahre vor | 1

Beantwortet
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...

mehr als 11 Jahre vor | 0

Beantwortet
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...

mehr als 11 Jahre vor | 0

| akzeptiert

Beantwortet
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{...

mehr als 11 Jahre vor | 0

Beantwortet
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 ...

mehr als 11 Jahre vor | 0

Beantwortet
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...

mehr als 11 Jahre vor | 0

| akzeptiert

Mehr laden