답변 있음
inserting values in between two successive values in an array
This should get the job done: data=[-7.55;-7.62;-7.59;-7.75;-7.78;-7.69;-7.63;-7.69;-7.58;-7.95]; newdata=interp1(... 1:n...

거의 5년 전 | 0

| 수락됨

답변 있음
Where can I publish an article containing original Matlab code with original numerical method ?
I agree with @Torsten, @John D'Errico, and @Adam Danz that in general your method (i.e. pseudo-code) along with your results are...

거의 5년 전 | 0

| 수락됨

답변 있음
histogram of a a function with two variable
A histogram in two dimensions: help histogram2 So now you only need to calculate the X and Y matrices based on your two vector...

거의 5년 전 | 0

| 수락됨

답변 있음
How to bin data from a matrix (2D array)
If you have the image processing toolbox, you can use blockproc to do the calculation. If you don't mind the overhead, you could...

거의 5년 전 | 0

| 수락됨

답변 있음
Apps comiler in Mac version of Matlab
I don't know the actual answer, but you might try p-code. It is not fool-proof, but it is fairly tricky to find the way to decom...

거의 5년 전 | 0

| 수락됨

답변 있음
For loop to iterate through variable
You painted yourself in a corner by storing data in a variable name. If you had used a cell array from the start, you could hav...

거의 5년 전 | 0

| 수락됨

답변 있음
I need average of all elements with same position of cell arrays.
You could reshape your data to a 3D array, which would allow you simply use mean. FillValue=0; M=cell(3,1); M{1}=[1 6000 -1...

거의 5년 전 | 1

| 수락됨

답변 있음
How to run MATLAB code in Mathematica?
A quick google search suggests two options: Translate the code to Mathematica Use a tool like matlink (I don't know if that st...

거의 5년 전 | 0

제출됨


minify
Process Matlab code into a solid block of compact and unreadable but functionally equivalent code.

거의 5년 전 | 다운로드 수: 1 |

5.0 / 5
Thumbnail

답변 있음
Downloading and saving Excel files using Matlab
It seems this website blocks requests when it detects non-human requests. You might be able to circumvent this by use the Wayba...

거의 5년 전 | 0

답변 있음
theory parts from the documentation -usage
The answer is likely to depend on your jurisdiction. (I am not a lawyer, this is not legal advice) In general, facts are not su...

거의 5년 전 | 0

답변 있음
How to plot curves with different colors with "if" conditions
You have nested your if statements, which would have been very easy to spot if you had used the debugger to step through the cod...

거의 5년 전 | 0

| 수락됨

답변 있음
hi i would be thankful if you help me with my question
You can find guidelines for posting homework on this forum here. If you have trouble with Matlab basics you may consider doing t...

거의 5년 전 | 0

| 수락됨

답변 있음
Fetch data from multi dimensional struct
Referencing the field will generate a comma separated list, which you can capture into a cell array like you would expect: %cre...

거의 5년 전 | 0

답변 있음
Converting a function into an operator
You can also do the work yourself by implementing mtimes as a method (I mimiced the interface suggested by Matt which ignores th...

거의 5년 전 | 1

답변 있음
How to create a minesweeper board using a matrix
The name Matlab stands for 'matrix laboratory'. It would be a shame not to use the array processing powers. If you set the loca...

거의 5년 전 | 1

답변 있음
How to delete/cancel trailing zeros in complex and imaginary numbers?
The way data is stored and the way it is displayed is not necessarilly connected. You can influence the way data is presented wi...

거의 5년 전 | 1

답변 있음
solve returns variable name instead of value
This is exactly as documented. syms x result=solve(4 == 2+x,x) res=double(result) %convert symbolic to double

거의 5년 전 | 0

답변 있음
Saving the outputs of multiple runs of a script
You should not be using a script outside of debugging. If you're only interested in the value of a single variable, you should m...

거의 5년 전 | 1

답변 있음
How to use the function quiver in app designer?
You can specify the Parent property: %load example data from the doc load('wind','x','y','u','v') X = x(11:22,11:22,1); Y = ...

거의 5년 전 | 0

| 수락됨

답변 있음
Choose 1 real solution between 4 solutions
You're using a syntax that is no longer valid in Matlab. Since you didn't specify your Matlab release (and posted your code as p...

거의 5년 전 | 0

| 수락됨

답변 있음
CAT arguments dimensions not consistent.
There are several issues with your code. After applying the correct indentation, here are my edits. The source of your error is...

거의 5년 전 | 1

| 수락됨

답변 있음
Count total number of recurring sequences
If you get RunLength from the FileExchange this is fairly easy: data=[0;1;1;1;0;0;0;0;1;0;1;1;1;1]; [~,N] = RunLength_M(data);...

거의 5년 전 | 1

| 수락됨

답변 있음
Creating a loop inside a script
It sounds like your loop needs to have a shape like this: clear syms x1 x2 x3 x4 x5 x6 T eqn = [ 200*x1-x2-70600 ==0 ...

거의 5년 전 | 0

답변 있음
Read custom time format from txt or xlsx file
As long as you process each line as a char array it is as easy as simply inserting the colons: %read your file to cellstr with ...

거의 5년 전 | 0

| 수락됨

답변 있음
Insert text to the image in for loop
Instead of recreating graphics object every iteration of your loop, it is often faster to create the object once and then update...

거의 5년 전 | 0

| 수락됨

답변 있음
Naming variables from one column Import file
Don't store data in a variable name. You should use cell arrays or fields of a struct instead.

거의 5년 전 | 1

답변 있음
how can i convert an answer from an inputdlg into a matrix ?
While you could solve it like you suggest, a much better idea (in my opinion) would be to use uigetfile. file = uigetfile opens...

거의 5년 전 | 0

답변 있음
Graphing data from a .txt file giving error and inaccurate data
You should probably read the file once and then parse the data. I cropped your file, because I don't think the entire thing is r...

거의 5년 전 | 2

| 수락됨

답변 있음
F=Kff*uf - Matrix operation
You were almost there: F = [383.02; 321.39; 0;]; Kff = [634.8 -191.2 -353.6; -191.2 447.3 353.6; -353.6 35...

거의 5년 전 | 0

| 수락됨

더 보기