回答済み
Mex file. error in passing data.
Your code behaves exactly as I would expect: fills elements l1 to l2 of CE with twice the first element of C. I suggest you find...

4年弱 前 | 1

| 採用済み

回答済み
String scalar or character vector must have valid interpreter syntax.
The error tells you the latex is invalid. Indeed it is, it's missing some spaces around the \mid ylabel('$\mid H(f) \mid$ (deg/...

4年弱 前 | 3

回答済み
Write data on to Excel
If I understood correctly: xlswrite(somefile, reshape([M, nan(size(M, 1), 1, size(M, 3))], 6, []), '', 'E1') basically pad you...

4年弱 前 | 0

| 採用済み

回答済み
Convert each 2D matrix in a collection of matrices into a diagonal matrix
A = A .* permute(eye(size(A, 2), [3 1 2])) %multiply each matrix by the identity matrix which keeps just the diagonal of each ...

4年弱 前 | 0

| 採用済み

回答済み
Is it possible to make Acos return values greater than pi?
"Is it possible to make Acos return values greater than pi?" No. The function codomain is mathematically defined as [0, ]. You ...

4年弱 前 | 0

回答済み
Unable to perform assignment because dot indexing is not supported for variables of this type.
The error is easily explained. You're expecting readtable to read the first column of your csv as a datetime. You haven't checke...

4年弱 前 | 0

回答済み
Any notes or examples available on calculating the modulation transfer function of an imaging system in matlab
If I remember correctly, there is matlab code that comes with the iso standard on MTF (ISO 15529:2010). I can't remember where ...

4年弱 前 | 1

回答済み
Have class vector; how obtain vector of a field?
ages = [meep.age]; %same as: ages = horzcat(meep.age); %or ages = vertcat(meep.age); %to vertically concatenate all the valu...

4年弱 前 | 0

| 採用済み

回答済み
sscanf not working for text on multiple lines.
"now all of a sudden the code doesn't work at all!" Well, yes that would be because the text portion in your sample file is not...

4年弱 前 | 0

| 採用済み

回答済み
Adding rows to matrix conditionally
We don't have enough details to give you a complete answer but what you want to do should be easily done by reading your file a...

4年弱 前 | 0

| 採用済み

回答済み
How to add a matrix vertically and nest an if loop
Using a loop for this would be pointless and unnecessary complicated Oxygenminute = (1:numel(Oxygen))' * 5; Oxygenhour = floor...

4年弱 前 | 0

| 採用済み

回答済み
Interpolation of in-between values in a list of different groups
I've not tried to understand your code to see where the slow processing is (edit: it's probably the stack) There's no reason for...

4年弱 前 | 1

| 採用済み

回答済み
Produce equality matrix based on elements in vector.
Trivially done. %assuming A and B are both row vectors: C = A.' == B; If they're both column vectors, transpose B instead.

約4年 前 | 0

| 採用済み

回答済み
Getting a command like gather to run silently
The following is unfortunately completely undocumented and therefore to be used at your own risk. It may stop working in a futur...

約4年 前 | 2

| 採用済み

回答済み
I want to get rid of the e+03 in the numbers presented in my table
In the view tab, under Number Display Format select "Long Fixed Decimal" (2nd option) or "Long Fixed Decimal or Scientific Notat...

約4年 前 | 2

回答済み
Index exceeds the number of array elements (2).
Always preallocate vectors instead of growing them in a loop, so before the loop: M = zeros(1, total_t); While this will get r...

約4年 前 | 0

| 採用済み

回答済み
strtok is only using the first character of my delimiter instead of the full character vector
"How do I make it so that only HAIR is the delimiter and not H, A, I, or R?" You can't do that with strtok. The simplest is to ...

約4年 前 | 0

| 採用済み

回答済み
Decompose image into the sum of two images
I don't see how your code even attempt to answer your assignment. Which of the image processing function would you use to detec...

約4年 前 | 0

回答済み
All input arguments must be tables error
"NT1,T1,NT2,T2 are all 7*1 matrix" Clearly not! At least one of them is a table. If you concatenate something with a table, as ...

約4年 前 | 0

回答済み
How to find the maximum element among the minimum elements in the columns in matrix m:n? With using loops.
There's never any need for a loop for things like that. Loops usually complicate the code in matlab. maxofcolmin = max(min(mass...

約4年 前 | 0

回答済み
Function overwrites output with a different number
"How would I create and store that question tree/its outputs" There are many options, which one you'd choose would be up to you...

約4年 前 | 0

回答済み
Error using table.init (line 401) The VariableNames property must contain one name for each variable in the table.
"Any idea how to resolve it.?" Well, yes provide as many variable names as there are columns in the arrays Accuracy_NN and Accu...

約4年 前 | 0

回答済み
Using convn with pictures and kernel.
It would be pointless to convert your 3D arrays into cell arrays of 2D arrays. You would just be storing the same information bu...

約4年 前 | 0

| 採用済み

回答済み
How can I use activeX to access Microsoft Excel equation editor from matlab
" I want the user of d app to be able to type mathematical expressions in textbook format" I don't believe you're going to achi...

約4年 前 | 0

| 採用済み

回答済み
it does not count this as right
First, don't post screenshots of the code. Simply copy/paste the code as text directly in your code (and then click the button)...

約4年 前 | 1

回答済み
Readtable error help?
I suspect to your 'FY20' is meant to be the sheet name. Unlike xlsread, with readtable the sheet name is passed as a Name-Parame...

約4年 前 | 1

| 採用済み

回答済み
HELP PLEASE! How to insert arrays 1x24 in columns of a database sql?
Your columns input is completely wrong. It's a cell array with just one cell, a very long char vector. You then wrap that into a...

約4年 前 | 1

回答済み
trial version of matlab2013b
For this kind a question, contact Mathworks sales directly. Only they can answer you properly.

約4年 前 | 0

| 採用済み

回答済み
Error using varfun function. "Matrix dimensions must agree."
Several points: "As I understand, I am multiplying 52824x9*9x1" No, you're using .*, the memberwise multiplication, not * the m...

約4年 前 | 0

| 採用済み

さらに読み込む