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

quasi 2 anni fa | 0

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

quasi 2 anni fa | 1

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

quasi 2 anni fa | 0

| accettato

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

quasi 2 anni fa | 0

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

quasi 2 anni fa | 1

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

quasi 2 anni fa | 0

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

quasi 2 anni fa | 0

| accettato

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

quasi 2 anni fa | 0

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

quasi 2 anni fa | 0

| accettato

Risposto
How to Sort Matrix Rows from Highest to Lowest
It's not clear about B, but A = cell(3,2); A(:,1)=cellstr("D"+[1:3]); A(:,2)={5;15;10}; A=sortrows(A,2,'descend') B=10+[A{:...

quasi 2 anni fa | 1

Risposto
how to convert or generate prn files to xlsx files
More generically, but the same idea ROOT='C:\Users\vzmglb\Desktop\29july2024'; % set a root for the data files d=dir(fullfile...

quasi 2 anni fa | 0

Risposto
I want to make curve fitting to these points
The top and bottom are identical pairs above and below the mean; hence when/if you fit the whole dataset, the single line that b...

quasi 2 anni fa | 0

| accettato

Risposto
how to obtain coefficients and other data from a curve fit object, of the interpolant type, using linear method?
The piecewise interpolants don't have a single set of coefficients and the object is closed for detailed inspection by design. ...

quasi 2 anni fa | 0

Risposto
Creating a Matrix Output from Element Integration Inside Matrix
Rereading the Q? title, I guess the above supposition I thought an error is actually what you're looking to do. If that is the ...

quasi 2 anni fa | 0

Risposto
Selection of array elements with condition
A=[{[-0.3368 -0.0329]} ... { [-0.5666 -1.2306 -1.9879 -1.6091 -1.0889 -0.6703]} {[-0.5950 -0.7264 -0.2151]} {[ -...

quasi 2 anni fa | 0

| accettato

Risposto
Is It Okay to Add Semicolons After Every Expression?
Not "wrong", no. Superfluous in many instances, but not "wrong". I think you'll find that with time in grade you'll begin to l...

quasi 2 anni fa | 1

| accettato

Risposto
Can you convert DatetimeRuler to DurationRuler?
Unfortunately, something like xl=ax.XLim; % retrieve current limits xl(1)=dateshift(xl(1),...

quasi 2 anni fa | 0

| accettato

Risposto
can you add probability to a for loop?
Are F1, F2, ..computationally different other than the two probabilities I gather from the above? If not, encapsulate the calcu...

quasi 2 anni fa | 1

Risposto
How do I pull data from multiple excel spreadsheets located in the same folder?
"But I want to take all of the M18 data points and put it into one singular excel file so there will be x amount of rows for the...

quasi 2 anni fa | 0

Risposto
Why is detectImportOptions not sheet agnostic with a named Range?
Potential workaround/addition--- I created a rudimentary ActiveX component to query a workbook for the contained named ranges; ...

quasi 2 anni fa | 0

Risposto
I can't delete the file obtained with matlab
You'll have to exit and restart MATLAB, then... I've never had MATLAB keep the file handle open; Excel if using ActiveX and cra...

quasi 2 anni fa | 0

| accettato

Risposto
How can I write a script to replace a specific integer value in my table, with the average of the data above and below that integer in the table
"what function could make me fill it with the expected value?" There isn't a builtin that will do that automagically, but if yo...

quasi 2 anni fa | 0

Risposto
Why is detectImportOptions not sheet agnostic with a named Range?
Because the whole suite for workbooks is designed around working with a single worksheet at a time; none of the functions that u...

quasi 2 anni fa | 0

Risposto
How can I remove a line off UIAxes on App designer in RealTime with SpeedGoat
I "know nuthink!" about Simulink but looks to me like clearScalarAndLineData just clears the present data but since the signals ...

quasi 2 anni fa | 0

Risposto
With a ribbon plot, how to make the ribbons go along each matrix row instead of each column?
It can be done with plot3 excepting the Q? asked specifically how to do a ribbon. X=[1:4]; Y=[0:3]; Z=[0,1,2,2; 1,2,3,3; 2,3,...

quasi 2 anni fa | 0

| accettato

Risposto
Retrieving RMS of a signal with variable sample rate
Straightforward, deadahead solution would be something like y=resample(y,tx,fs); y_rms=rms(y); where y is your beginning sign...

quasi 2 anni fa | 0

Risposto
How to plot a line on top of the continuous wavelet transform (CWT) output?
data = xlsread('signal.xlsx','1'); % Extract the time and signal columns t = data(:, 1); signal = data(:, 2); dt = t(3) - t(...

quasi 2 anni fa | 0

| accettato

Risposto
Matlab crash access violation
That's an official support/bug report issue. MATLAB shouldn't crash, but the forum volunteers don't have the inside info to be ...

quasi 2 anni fa | 0

| accettato

Risposto
problem with storing in an array
In extreme_point(num, :) = [oct_i, page_i, r, c, sigma_i, 0]; the RH side is a vector of 6 elements; as written, the LH side p...

quasi 2 anni fa | 0

Carica altro