已回答 Equation in a single column matrix?
When I run your code (after fixing a typo when you refer to what I think should be b(n)/13), the result is a 1-by-6 array for c:...
3 years 前 | 1
| 已接受
已回答 evaluation of anonymous function
I am not quite sure if this is what you are asking, but I'll give it a shot:
The piece of code important to your question is
r...
已回答 how to define a gradient colormap
Yes, you can use a fixed colormap by executing the following command each time you plot an image:
caxis([-1 1])
This will map ...
3 years 前 | 1
| 已接受
已回答 Index a cell array with an cell
Hi Christian,
You can pick the corresponding entries for each of the cells of C as follows:
C{i}(B{i}==0)
The results are the...
3 years 前 | 0
已回答 Delete values in a table but keep the cells
Try
df{r,c} = {''}
instead. You should be able to avoid the inner loop entirely by using
df{r,3:nCols} = {''}
Also, to check...