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

約5年 前 | 0

回答済み
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

| 採用済み

さらに読み込む