Réponse apportée
Open and read unique spectrum file .spc
L=[0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0]; numel(L) :The fir...

5 mois il y a | 0

| A accepté

Réponse apportée
Reading Bytes from Arduino to MATLAB
I dunno how to fix the Arduino side, but the data bytes you're returning aren't the right values for the single float values 1 t...

5 mois il y a | 1

Réponse apportée
Combined 2 files .dat with different size
"but i want to combine 2 files in one file .dat the Problem it's the Two files has different size" You already told us that, b...

5 mois il y a | 1

| A accepté

Réponse apportée
Increasing the line width of box plot whiskers
... hBx=findobj('Tag','boxplot'); % the boxplot group handle hBx=find(hBx.Children,'-not','Tag',...

5 mois il y a | 0

Réponse apportée
uitable copy function allowing for numerical values of mixture of of numbers and chars.
I'd go at it a little bit differently, although I just discovered the clipboard only takes one line of text so one does have to ...

5 mois il y a | 0

| A accepté

Réponse apportée
While cycle with conditions never ending
while ~(Dice1==6 & Dice2==6) The expression as written first does AND operation of the two numeric, not logic, values and t...

5 mois il y a | 0

Réponse apportée
boxchart - different box width according to number of data points
I'll add a shorter, cleaner version as well...go ahead and accept the answer since it is the basis for the result desired if you...

5 mois il y a | 0

| A accepté

Réponse apportée
boxchart - different box width according to number of data points
With sufficient perserverence it looks as though should be able to make boxchart work...the doc had an easy example to illustrat...

5 mois il y a | 0

Réponse apportée
How to locked/unlocked cells in an Excel file?
You'll have to use Excel COM. The <Link to Excel Locked Property> gives the syntax; you merely set the range .Locked property t...

5 mois il y a | 2

Réponse apportée
Interpolating between columns for an index
X=[550 750 950]; Y=[1 2 8]; % the interpolation table data xy=[550 22;580 21;650 20;623 28;850 14]; % the da...

5 mois il y a | 0

Réponse apportée
How to use stacked bar charts to draw multiple confidence intervals
coef = [-0.0186 0.0057 -0.0067 -0.0007 0 -0.0295 -0.0517 -0.0651 -0.0689 -0.0862 -0.0866]; Lower_Bound = [ -0.061944 -0.051528 ...

5 mois il y a | 0

Réponse apportée
Crosstab by using the same input for both arguments
"@Sim - if what I wrote is correct..." Your statements above were written under the null hypothesis that "both KSTEST2() and ...

5 mois il y a | 1

Réponse apportée
Why do I get Empty Plots during Optimization?
Per the above comments, at least a start would be something more like... function state = gaPlotRangeND(options, state, flag) ...

5 mois il y a | 0

Réponse apportée
Unable to resolve the warning on ill conditioned Jacobian
M = readmatrix('datai2j3.txt'); %fPar = sigm_fit_base_e(M(:,1),M(:,2),[],[0 0.2845 9.88 -1],1) fPar = sigm_fit_base_e(M(:,1),M...

5 mois il y a | 0

Réponse apportée
Hi I have a query I removed the harmonic to preserve the fundamental but still fundamental at 1MHz is also filtered can anyone tell m e.
% Load the frequency domain data folder='';% = 'C:\Users\haneu\OneDrive\바탕 화면\date\New folder (2)'; filename = '270mvp.csv'; ...

5 mois il y a | 0

| A accepté

Réponse apportée
Export a large table to a pdf file
The table isn't intended to be an output formatting tool; you can try exportgraphics and see if can get anywhere, but you may ne...

5 mois il y a | 0

Réponse apportée
Bar chart from Excel with hidden columns
warning('off','MATLAB:table:ModifiedAndSavedVarNames'); % turn off annoying nag message tA=readtable('Auswertung - ...

5 mois il y a | 1

Réponse apportée
I am trying to setup a serial communication with a optical power meter and I am not able to read the returned string.
"I cant turn it off on the keypad...." I'd be pretty sure there is a place in the menu system given that the vendor manual says...

5 mois il y a | 0

| A accepté

Réponse apportée
Bar chart from Excel with hidden columns
opt=detectImportOptions('yourfile.xlsx'); % base import options object opt.SelectedVariableNames=opt....

5 mois il y a | 0

Réponse apportée
Import numpy and scipy (maybe through Anaconda) in Matlab
No joy regarding Python, but to get to the desired end result, see the <FEX Submittal> that returned the identical test statisti...

5 mois il y a | 1

Réponse apportée
Call a Python function inside a MATLAB loop
Using <FEX Submittal> with your example dummy data, it generated the exact same statistic without all the mucking around with Py...

5 mois il y a | 1

Réponse apportée
Size of the left side different from the right side
function [PersonalSPQ,PersonalSPAns] = PersonalSPQforResponder(SPAnsVector) PersonalSPQ=zeros(1,6); PersonalSPAns=zeros(1,...

5 mois il y a | 0

Réponse apportée
How to change xlim to specific range only?
a=readmatrix('output1.xlsx','Sheet','final graph'); % xlsread has been deprecated cols2plot=[2:5]; ...

5 mois il y a | 1

Réponse apportée
Figure changes during export
exportgraphics(ax,output_filename); plot([post_x(f),pext(h,1)],[post_y(f),pext(h,2)],'r-') The exportgraphics call is ...

5 mois il y a | 0

| A accepté

Réponse apportée
How to receive an full binary data using mqtt callback function
mqttclient and subsequent subscribe shows the callback function is to read the subscribed-to channel and the input function is a...

6 mois il y a | 0

Réponse apportée
Changing color in legend for grouped bar graph and Minimizing Concise Code
MAX=[200, 900, 1200, 2000]; % a max to generate sample data MIN=[ 50, 600, 900, 1800]; % and a min for i=1:numel(MAX)...

6 mois il y a | 1

Réponse apportée
Thermal distribution - Problem with horzcat and dimensions of a plate
The second is trivial to diagnose; only you will be able to know what is intended in order to fix it correctly for the model you...

6 mois il y a | 0

Réponse apportée
Replacing one line (or one part of a line) in a text file
FilePath='C:\Program Files\Teledyne DALSA\Sapera\CamFiles\User'; FileName='myCamera.ccf'; FQName=fullfile(FilePath,FileName); ...

6 mois il y a | 0

| A accepté

Réponse apportée
How to make a specific bar to be hatched with a specific color
x=[1,2,3,4,5]; y1=[0.25 1.14 2.20 0.21 1.09 2.16 ; 0.48 2.26 4.40 0.42 2.20 4.34; 0.72 3.38 6.58 0.74 3.27 5.86 ;1.01 4.56 ...

6 mois il y a | 0

Réponse apportée
Issues in Running VBA macros programmatically from Matlab
Just ran a simple test here and no problems... I have had issues in the past with the new MS security settings are much more ag...

6 mois il y a | 0

| A accepté

Charger plus