Statistiques
RANG
1 207
of 300 352
RÉPUTATION
62
CONTRIBUTIONS
0 Questions
31 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
12
RANG
of 20 928
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Matlab coder doesn't work with commands like try, { , so is there any way to fix it?
Hi Refer to the following linkto know about Functions and Objects Supported for C and C++ Code Generation: http://www.mat...
plus de 9 ans il y a | 0
How can I run a function in parallel and return the compiled output of the function?
Hi, One way to achieve this would be to create a set of jobs and submit to your parallel cluster for execution. Refer to the ...
plus de 9 ans il y a | 1
| A accepté
How to transfer data between apps using app designer
Hi, You can use public properties as explained in the link below to share data between apps. And you can add a closeRequestFc...
plus de 9 ans il y a | 1
How to get Bus details from an output port using MATLAB and not Simulink?
Hi, Following link will help in getting the BUS details programatically: <http://www.mathworks.com/help/simulink/ug/buses....
plus de 9 ans il y a | 0
how to define an anonymous function in spmd block?
Hi, As per this documentation <http://www.mathworks.com/help/distcomp/programming-tips_brukbnp-9.html#brukbnp-12 link> , the ...
plus de 9 ans il y a | 1
Why does program execution hang when using "pause?"
Hi, This is a bug which only occurs in Windows 10. Using Space key to come out of pause mode works, but if Enter key is used ...
plus de 9 ans il y a | 0
| A accepté
Error in alternateGetframe when creating a video in a large for loop
Hi, I was able to create a video using nFrames = 10000 in MATLAB R2015b. I did make a couple of changes to the above code. I ...
plus de 9 ans il y a | 0
What is the best way to implement Class Diagrams in Simulink&Stateflow ? What is the equivalent of classes representation in Stateflow?
Hi, This <http://www.mathworks.com/videos/hybrid-software-development-with-simulink-and-uml-tools-68870.html link> talks abou...
plus de 9 ans il y a | 0
How can I fasten my code?
Hi, Let us break this work into two parts say 'Code Re-Designing' and 'Algorithm Re-Designing'. *Part 1 :: Code Re-Design...
plus de 9 ans il y a | 0
| A accepté
How to input a half sine pulse force with varying loads for different time variables?
Hi, You can define your load in the following way: delt = 0.1; t = [0:delt:2]'; P = 10*sin(pi*t/0.6); %input loa...
plus de 9 ans il y a | 0
I would like to make an equation to solve t when T_max is equal to 450
Hi, Appending these three commands to your code will do the magic: eqn = T_max == 450; res = solve(eqn,t); val = d...
plus de 9 ans il y a | 0
How to Store Variable Names for Struct Titles
Hi, To dynamically name the fields of struct depending on the name of the inputs to the function, you can use the ' <http://w...
plus de 9 ans il y a | 1
| A accepté
Applying rotation matrix on inclined plane
Hi, My understanding is that you would like to rotate this given plane (which passes through origin) such that the normal of ...
plus de 9 ans il y a | 0
| A accepté
approximate the value of π using the following algorithm based on geometric probability. This algorithm is an example of the so called monte carlo method
Hi, The code seems to work fine for computing PI using Hit & Miss Monte Carlo algorithm. In this code the variable 'c' is the...
plus de 9 ans il y a | 0
| A accepté
Looping and Saving Values into an Array for Forward Euler Method Using While Loop
Hi, This can be achieved by calling a function repeatedly to perform the same task but for different values. To illustrate ...
plus de 9 ans il y a | 0
How do I repeat a row a certain number of times?
Hi, This can be also done using the REPELEM command as follows: v = [1:4]; repelem(v,[3],[1]) Follow the link below ...
plus de 9 ans il y a | 2
Matlab Parallel Toolbox Workers Aborted - continue serially?
Hi, An SpmdEnabled pool cannot continue once communication between workers or between workers and client has been lost. If yo...
plus de 9 ans il y a | 2
Problem with while loop and matrix size.
Hi, It seems you are trying to access A(6) i.e. the sixth element in the array A and hence MATLAB is throwing an error. This ...
plus de 9 ans il y a | 1
Get values from another GUI using handles or getapp / setapp
Hi, There are multiple ways of sharing data between GUIs. To illustrate one of the ways, I have created test1 and test2 GUIs...
plus de 9 ans il y a | 0
Problem with GUI resolution issues.
Hi, If you consider using UNITS as NORMALIZED rather than CHARACTERS then this should resolve the issue. Also, do not deactiv...
plus de 9 ans il y a | 0
modeling the program in matlab before coding
Hi Mahdi, This <http://www.mathworks.com/videos/hybrid-software-development-with-simulink-and-uml-tools-68870.html link> talk...
plus de 9 ans il y a | 0
| A accepté
dfield6 errors with Matlab 2015
Hi, I tried debugging the attached code DFIELD6.M and could reproduce the above mentioned errors. If you replace all *if not...
plus de 9 ans il y a | 1
Irregular (long-)time series is to be interpolated as well mean value and standard deviation to be calculated. How?
Hi Endric, # To interpolate the values for every minute you can use the INTERP1 function as explained <http://www.mathworks.c...
plus de 9 ans il y a | 0
how to avoid overlapping when drawing dots using screen function?
Hi Jinyi, I do not have a Psychtoolbox installed currently and hence cannot reproduce this issue. But from the above code, I ...
plus de 9 ans il y a | 0
How to change the ODE to be solved for different ranges in ODE45
Hi Marius, In this case both ODE1 and ODE2 can be represented in a single function by a minor change. Replace alpha with aplh...
plus de 9 ans il y a | 0
Change default IDE layout
Hi James, The most recently used layout is generally loaded in MATLAB R2015b too. I have tried the same successfully. You can...
plus de 9 ans il y a | 1
| A accepté
Value does not get updated the way it should in for loop
1. The 'Tip_Position_Output' will not increase/decrease by 'a' only while moving along the array 'Tip_Position_Output'. But the ...
presque 10 ans il y a | 0
How can I make this code more efficient?
Hi, A good approach to study the performance of the above code would be to use a profiler. The profiler would expose the comp...
presque 10 ans il y a | 1
| A accepté
MATLAB RK METHOD NOT GIVING ANY RESULT
It seems you are trying to build a GUI with callbacks which share data among them, but while trying to do this you do not observ...
presque 10 ans il y a | 0
Burned in annotations Dicom
I understand that you want to extract manual burned in annotations from a DICOM file and by annotations you mean the METADATA of...
presque 10 ans il y a | 0


