Beantwortet
Keep always on top
set(figure_handle,'WindowStyle','modal')

mehr als 14 Jahre vor | 3

Beantwortet
Producing a Matrix
I believe you are looking for meshgrid: [Xa, Xb]=meshgrid(X); [Ya, Yb]=meshgrid(Y); [Za, Zb]=meshgrid(Z); Dist = sqrt((X...

mehr als 14 Jahre vor | 0

Beantwortet
Execute several statements in parallel without parfor
You can perform several tasks in parallel using spmd (Single Program Multiple Data). For example: % Gather all inputs into ...

mehr als 14 Jahre vor | 2

Beantwortet
Two ways of M-subfunction definition: what are discrepances?
In the first case, the second function is nested and only the outer function can call it. Furthermore the nested function can re...

mehr als 14 Jahre vor | 2

Beantwortet
fitting function of two variables
You can use fminsearch to optimize your coefficients, but you still need to know the basic form of the function. Write a functi...

mehr als 14 Jahre vor | 1

Beantwortet
question about the function of callback
Another option is to do this: push_button(k) = uicontrol('style','pushbutton',... 'callback',{@pushbutton_callback_main,k})...

mehr als 14 Jahre vor | 0

Frage


Break point in parfor loop
I am trying to find a way to include a cancel button to a code that uses PARFOR. I tried using the same technique used in regul...

mehr als 14 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How to export a matrix from MATLAB to Excel?
There is a function called xlswrite which does just that.

fast 15 Jahre vor | 1

| akzeptiert

Beantwortet
Using "for" and "fsolve"
Your initial guess x0 is the same for all iterations. I dont know what the "countries" function does, and how the other variable...

fast 15 Jahre vor | 0

Beantwortet
Adding data in cells
There's probably a way to do this without for loops but this is my suggestion: L=length(C); MatSize=size(C{1}); D=z...

fast 15 Jahre vor | 0