Respondida
Cell to matrix average
Something like this should work for you: %generate some example data data=cell(93,1); for n=1:93 data{n}=rand(45,147,19)...

casi 7 años hace | 0

Respondida
How do you use ls to change your directory in Matlab?
The homework is either badly designed, or is attempting to teach you why you shouldn't use it. You shouldn't change your curren...

casi 7 años hace | 0

| aceptada

Respondida
Standard Deviation of 3D matrix with NaN elements
This syntax should work for most releases: sdev=std(m(:),'omitnan');

casi 7 años hace | 0

Respondida
Picking files according to file names
Use the dir function to generate a list of files, then parse the file names in a loop and continue to read the relevant files.

casi 7 años hace | 0

| aceptada

Respondida
Finding consecutive data with non zero in array
I used the mfile version of Jan's FEX submission RunLength, because I can't get my compiler to work right now. With the runlegth...

casi 7 años hace | 0

Respondida
randomly divide vector into 2 parts.
I don't fully understand every step of your code, so I rewrote it: index_rating=rand(100000,5);%generate example data training...

casi 7 años hace | 0

| aceptada

Respondida
imread not working for gif problem
It took some digging with the debugger, but with enough breakpoints I was able to track down the cause. Your calls are failing b...

casi 7 años hace | 2

| aceptada

Respondida
write a range on the y-axis
You can modify the XTickLabels property to display any char array. figure(1),clf(1)%only use clf during debugging ax=axes; pl...

casi 7 años hace | 0

| aceptada

Respondida
How can I run a Matlab script at the same time everyday?
It is probably easiest to use the options your OS provides and run a headless instance of Matlab. On Windows you can use the tas...

casi 7 años hace | 0

Respondida
Changing data from long form to short form
You can use the participant ID and trial ID as the indices and either use accumarray or sub2ind to fill the matrix with the valu...

casi 7 años hace | 1

Respondida
How to count the number of voxels of another color
Similar to how you would do that for 2D: IM=randi(255,[512 512 400]); count=sum(IM==200,'all'); %if your release doesn't ha...

casi 7 años hace | 0

| aceptada

Respondida
Save data from MatLab GUI to struct .mat file
You should always load to a struct. That makes it clear where variables come from. Then it is also easier to extend the struct i...

casi 7 años hace | 1

| aceptada

Respondida
How can I base my legend on the markers I defined in my plot?
The best solution is to set the DisplayName property when calling plot, and/or use an array of handles to create the legend. See...

casi 7 años hace | 0

| aceptada

Respondida
Legend repeating same color
Set the DisplayName property when calling plot, or use the output from plot to build your legend with specific handles. x=linsp...

casi 7 años hace | 4

| aceptada

Respondida
write and read the same image but they are different
You should read the documentation of the functions you're using if you want to understand them. Matlab has excellent documentati...

casi 7 años hace | 0

Respondida
Make matlab use a function from a certain toolbox
You have assigned something to a variable named dist. That will shadow all functions. The solution is not to use dist as a varia...

casi 7 años hace | 0

| aceptada

Respondida
Comparing 2 lists and assign a value
If you can make two arrays, you can use the ismember function, which should work well for large arrays as well.

casi 7 años hace | 0

Respondida
How do I end a program when a condition is met using only if-else-elseif statements?
Something like this will work (edit to add nesting): function out=MyFunction(in) if in<1 if in==0.5 %do somethin...

casi 7 años hace | 0

| aceptada

Respondida
Why won't MatLab properly download onto my windows laptop?
If you go to your account (this link should get you there) you can click on your license number. Then go the 'Install and Activa...

casi 7 años hace | 0

Respondida
Custom GUI: Check for updates
You could probably have a function check your website at most once a week by calling your update function when starting some spe...

casi 7 años hace | 1

| aceptada

Respondida
HOW Calculate the distance of points form one center in 2-D space and display output in a distance matrix?
This should do the trick: X=2*(rand(5,5)-0.5); Y=2*(rand(5,5)-0.5); x=0.3;y=0.3; d=point2pointcloud(X,Y,x,y) function d=p...

casi 7 años hace | 1

| aceptada

Respondida
how can i covert following variables as Indexed variables ?
No need for a conversion, they already are indexed variables. Lets give a small example of what this message means: data=1:5; ...

casi 7 años hace | 1

| aceptada

Respondida
How can i fit the data to the custom equation without using Curve fitting Toolbox ?
Sligthly exanpding on what Walter suggests: fun=@(ABCDE,t) ABCDE(1) + ABCDE(2) .* (1-exp(-t./ABCDE(3))) + ABCDE(4) .* (1-exp(-t...

casi 7 años hace | 0

Respondida
Where should we install third-party toolboxes under Windows?
My personal preference would be to pick 2 or 4. In general users messing with their copy of Matlab causes headaches. The advanta...

casi 7 años hace | 1

Respondida
why am I getting 'ugly' output?
At this point you should consider creating a small GUI for your input selection. But for your question at hand: you forgot to al...

casi 7 años hace | 1

| aceptada

Respondida
How to show r square correlation and RMSE on a scatterplot
With the code below you can determine a fitted value for y. Now it should be easy to calculate the Rsquare and RMSE. Let me know...

casi 7 años hace | 1

Respondida
Array inside an Array
If you have only positive integers, you can use an undocumented feature of strfind: D=[0 1 1 2 3 4];d=[1 2 3]; strfind(D,d) % ...

casi 7 años hace | 0

| aceptada

Respondida
How to make Matlab use all CPU cores?
The value of n is only 63, so the main constriction in your code is the while loop, which can't be parallelized. Matlab is fund...

casi 7 años hace | 1

Respondida
How to call .m file from an other .m file?
Scripts should only be used for examples and debugging. Your code is a function, so you shouldn't treat it as a script. It would...

casi 7 años hace | 0

Respondida
Is there an eraser for Matlab graphs?
You can use the annotation function to force a white background around a text label. If you add the annotation after plotting yo...

casi 7 años hace | 0

Cargar más