Risposto
Error using bar when plotting from variables
bar([x, y1, w1, 'FaceColor',[0.2 0.2 0.5]]) % ^ ^ Those brackets are incorrect.

circa 5 anni fa | 0

Risposto
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...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 1

| accettato

Risposto
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...

circa 5 anni fa | 0

Inviato


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

circa 5 anni fa | 1 download |

5.0 / 5
Thumbnail

Risposto
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...

circa 5 anni fa | 0

Risposto
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...

circa 5 anni fa | 0

Risposto
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...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 0

Risposto
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...

circa 5 anni fa | 1

Risposto
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...

circa 5 anni fa | 1

Risposto
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...

circa 5 anni fa | 1

Risposto
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

circa 5 anni fa | 0

Risposto
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...

circa 5 anni fa | 1

Risposto
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 = ...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 1

| accettato

Risposto
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);...

circa 5 anni fa | 1

| accettato

Risposto
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 ...

circa 5 anni fa | 0

Risposto
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 ...

circa 5 anni fa | 0

| accettato

Risposto
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...

circa 5 anni fa | 0

| accettato

Risposto
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.

circa 5 anni fa | 1

Risposto
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...

circa 5 anni fa | 0

Risposto
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...

circa 5 anni fa | 2

| accettato

Carica altro