Réponse apportée
How to suppress opening of command window?
Use the -batch option See <matlabwindows> for all startup options (windows, there are other links for other OS)

plus de 5 ans il y a | 0

Réponse apportée
creating a coundown alarm everytime a function have been asked
function [] = alarm(varargin) % alarm -- display countdown left % Optional arguments % 'init' -- reset counter persisten...

plus de 5 ans il y a | 0

Réponse apportée
How to use Xlswrite command in actxserver and how to avoid script gets hanged due to hworkbook.close command?
". I just need to avoid xlswrite in my command" Indeed. You don't want to be running dueling ActiveX processors at the same ti...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Fill in missing data, unrecorded values, multiple columns
"am somewhat new to matlab and this is all I need help with..." In that case, you're doing well indeed! Congratulations!!! :)...

plus de 5 ans il y a | 0

Réponse apportée
How to code an equation with a variable that implies to all cell and save in same size of input array (using nested for loop)
data =xlsread('***'); minOverall=min(data,[],'all'); rngOverall=range(data,'all'); data=(data-minOverall)/rngOverall; Given ...

plus de 5 ans il y a | 0

Réponse apportée
How to return entire elements of a column of a matrix while that column includes maximum value of among all other elements of matrix
[~,ix]=max(max(A)); % return column of max of 2D array B=A(:,ix); % the resulting column Too bad there's...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Change file matlab workspace name as the folder name
" 'POWER.mat' , and the folder name is 'Results2021'" Well, it depends on whether you have already created the .mat file by hav...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
Three variables (two independent) 3D plotting
M=1; N=2; flg=true; for B=-20:20; X=M+B;l T=[]; for L=-10:10; Y=N+X; r=B+Y+L^2; sca...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How can we convert struct file to txt file?
arrayfun(@(s) writematrix([s.S s.F],[s.ID '.txt']),structWheeze)

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How can I link data from separate arrays?
Making harder than needs must be -- Thickness=[19.0;22.0;32.0]; Temp_data=cat(3l [0,-0.05;0.2,-0.13;0.4,0.25;0.6,0.64;0.8,0.56...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
How to find corresponding frequencies after viewing amplitude in descending order?
[DescendAmp,idx] = sort(peak_ft,'descend'); disp([peak_fr(idx) peak_ft])

plus de 5 ans il y a | 0

Réponse apportée
plot discontinuous x axis
Divide the time vector by T(end) for each trace and then plot versus the normalized time [0 1] instead...

plus de 5 ans il y a | 0

Réponse apportée
How to Enclose a Figure Title in a Box?
hT=title('This is a title','EdgeColor','k');

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Comparing date/time values in Matlab/ calling out date time values to use in code
Convert to a timetable and all kinds of tools are available; see <Overview Timetables> for all of the above kinds of operations

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Creating a Histogram of Letter grades converted from number grades
One way that illustrates lookup table approach... GRADES=[0,60,69.9,73.9,76.9,79.9,83.9,86.9,89.9,94.9,95.9,100]; % letter grad...

plus de 5 ans il y a | 0

Réponse apportée
Bestfit value doesn't match with the plotted value
Because you used gaussian_fn= @(q,x) (q(1)^2.*exp(-2.*((x-q(2)).^2)/q(3).^2)); as your fitting function -- in which q(1) is sq...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Groupsummary on timetable with cell/matrix data
Took a little head-scratching, but the following appears to work as desired-- fnMN3=@(c){mean(cat(3,c{:}),3)}; % functio...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to calculate the coefficient of variation in Matlab
N=30; mn=mean(reshape([time(:),speed(:)],N,[])); sd=std(reshape([time(:),speed(:)],N,[])); cv=reshape(sd./mn,[],N); return...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
No legend when plotting fit object
Doesn't seem to be any way to prevent the builtin fit object plot() routine from adding the legend. Instead, use plot(x,myfit(...

plus de 5 ans il y a | 1

| A accepté

Réponse apportée
How to create a new array with specific column and row thresholds from txt file
Why do you keep reverting to the hardest way possible to read in a data file? We just showed how easy it is to use readtable @...

plus de 5 ans il y a | 0

Réponse apportée
Multiple 2D plots in 1 3D plot
Well, your data look nothing at all like those in the sample plot and your vectors aren't of commensurate lengths, but-- plot3(...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Loading a 600 mb file ends up astronomically large
Attach the file (or at least a portion of it). Memory usage is only 1:1 with disk storage for numeric data types stored as stre...

plus de 5 ans il y a | 0

Réponse apportée
Reading csv file and counting number of lines that have a category of interest and are below a threshold
>> data=readtable('SampleDataset03.csv'); >> sum(contains(data.Category,'A')&data.Value<0.5) ans = 64 >> For this you d...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
plot un-equally spaced data in errorbar
You're looking for x1 = [28 56 112 224]; y1 = [21.2 18.01 16.8 14.38]; sd_vct1 = [4.93 1.77 1.81 2.32]; errorbar(x1,y1,sd_vc...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
removing spcific numbers from matrix
Don't need (and don't use) loops -- this is MATrix LABoratory, after all! :) A=A(~ismember(A,B)); or A=setxor(A,B); is the ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
READ TABLE WITH DIFFERENT SETTING INSIDE
It's a fignewton of looking at the text in the editor or on the screen--some was tab-delimited, some space but there's only one ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Create heatmap from table, error "'XVariable' value must reference a single variable in the source table."
The x,y variables for a table are given as the names of the wanted columns; the dot notation returns the data. heatmap(data_mea...

plus de 5 ans il y a | 0

Réponse apportée
Save generated points in txt file
ndgrid generates X,Y as arrays; in your case 3x3. For output you need to convert to vectors before making the table... T=table...

plus de 5 ans il y a | 0

Réponse apportée
cell indexing, extracting rectangular subset
I just duplicated your example 5 times... tokens=tokens.'; % reshape to column cell array vals=cell2mat(cellfun...

plus de 5 ans il y a | 0

Réponse apportée
How to build and call an array of objects containing a table of data
How about something like test=timetable(datetime(2020,2,13+[0;sort(randi(20,4,1))]),randi([120 240],5,1),'VariableNames',{'Temp...

plus de 5 ans il y a | 1

| A accepté

Charger plus