Respondida
MATLAB PCode Warning on R2021a
This can happen only, if somebody has edited the file isprop.m . Modifying Matlab's built-in functions is not useful and this ca...

casi 4 años hace | 0

| aceptada

Respondida
Intersect() with with repetition
If you really need the redundant information in iAB_C, iAB_Cprime, idx1, idx2, this is faster than the original version tested w...

casi 4 años hace | 0

| aceptada

Respondida
How to quickly calculate the following function?
See also: https://fredrikj.net/blog/2022/02/computing-the-lerch-transcendent/ Calculating the sum seems to be more stable. F...

casi 4 años hace | 0

| aceptada

Respondida
Artifacts when converting .svg to pdf
The output is fine, if I open your SVG in Edge and print it to a PDF using doPDF (by the way: version 7, the modern versions are...

casi 4 años hace | 0

Respondida
I want compare the differences from each block of 10 values to the next block of 10 values until the given 100 sets of values are compared.
According to the text of the question (but not the posted code): A = rand(100, 1); B = reshape(A, 10, 10); C = diff(B...

casi 4 años hace | 0

Respondida
Mathlab program solving answr below
Maybe you want to replace for i = 1:n by for i = n:-1:1

casi 4 años hace | 0

Respondida
Nesting depth and the error "Expected one output from a curly brace or dot indexing expression, but there were x results."
R2022a creates a different error: a(1).x.y=1; a(2).x.y=2; [a.x.y] "instead of just listing all values from across all indexe...

casi 4 años hace | 1

Respondida
change user name on shared laptop?
Try to start Matlab with a batch script: SET "USERNAME=Test_Name" "C:\Program Files\MATLAB\R2022a\bin\matlab.exe" What do you...

casi 4 años hace | 1

| aceptada

Respondida
Intersect() with with repetition
A simple loop approach: A = [1,1; ... 1,1; ... 1,2]; B = [0,1; ... 1,1; ... 1,1]; [C, iA, iB] = Rep...

casi 4 años hace | 1

Respondida
Create Figures in a loop
fig = gobjects(1, 10); for i = 1:10 fig(i) = figure(); histogram(r(i,:),'Normalization','probability'); xlim([0...

casi 4 años hace | 1

Respondida
How to use cell indexes into a matrix?
Would this trivial method solve your needs? C = {B(j(1), A{1}); B(j(2), A{2}); B(j(3), A{3}); B(j(4), A{4})}

casi 4 años hace | 0

| aceptada

Respondida
How do I return values from figure with out closing the figure
I assume, the calling function is stopped by uiwait? Then closing the function let Matlab resume the processing in the called. B...

casi 4 años hace | 0

Respondida
Typecast a hex string to single
str = '7f8e2d38'; vec = uint8(sscanf(str, '%2x')); num = typecast(vec, 'single') num = typecast(flip(vec), 'single') % Mayb...

casi 4 años hace | 0

| aceptada

Respondida
Making a for-loop based on a condition for the third dimension of a 3D Array
Omit strange useless lines like "for i = i". AntalObjekt = 60; Procent = 0.5; A...

casi 4 años hace | 0

| aceptada

Respondida
Repeated measurements of values in a script with repeated trials
Use a loop: st = cell(1, 24); for k = 1:24 st{k} = datestr(now,'YYYY/mm/dd HH:MM:SS:FFF'); ... end

casi 4 años hace | 0

| aceptada

Respondida
How can I avoid pseudo random and confirm natural random ?
You can download random bits created by atmospheric noise: https://www.random.org/integers/ An alternative is to install a har...

casi 4 años hace | 0

Respondida
how to plot multiple curves in same figure
Create a loop: axes('NextPlot', 'on'); % As: hold on ... for daln = 1:5 ... end

casi 4 años hace | 0

Respondida
extract all values within a if loop to be stored to be used in a figure
The code overwrite SL in each iteration. Store it as a vector instead: SL = zeros(1, Pn) for i = 1:Pn if 0<i && i <= PnC(...

casi 4 años hace | 0

| aceptada

Respondida
How to identify two different MACI64 computers
You can create a corresponding preference on each computer: setpref('Computer', 'ID', 'Computer1'); % and on the other machine...

casi 4 años hace | 0

| aceptada

Respondida
Script not running for different variable size.
The empty result looks correct: The larger the time, the fewer overlapping slots you find. For Total_Time=1000 there are about u...

casi 4 años hace | 0

| aceptada

Respondida
Randomizing the picking and changing of values in a 3D array
x = zeros(24, 365, 60); m3 = randperm(60, 30); for i3 = m3 for i2 = 1:365 m1 = randperm(24, 4); x(m1, ...

casi 4 años hace | 1

| aceptada

Respondida
Delete duplicate cell in a cell of complex double.
% Create cell in cell F = cell(1,3); F{1,1} = {[0.04 0.2 0.56; 0.31 0.67 0.22]}; F{1,2} = {[6+6j 7+3j 8-6j; 6+8j 7-6j 3-3j...

casi 4 años hace | 1

Respondida
Saving in TIF format without losing properties
What about avoiding imwrite but using https://www.mathworks.com/help/map/ref/geotiffwrite.html [tif, tfw] = readgeoraster(tif_...

casi 4 años hace | 0

Respondida
Sum(sum()) with optimization variable
Constraint2 = sum(x(:, :, (t - pt(j, r)):t), [1, 3]) <= 1;

casi 4 años hace | 0

Respondida
G-Code Reader not work and say error
The error message tells you, that there have been too many fopen() commands without an fclose() on the computer. If this concern...

casi 4 años hace | 0

Respondida
Is it possible to get an email notification when a new question is raised?
About 1000 to 3000 Questions are posted in this forum per month. Do you really want to get this pile of mails? Many questions g...

casi 4 años hace | 1

Respondida
Where/How exactly do I create an ODE Event Location Function?
As Walter has written already, use: [T,Y] = ode45 (@StraightRun, t, y0); % Instead of the old style: % [T,Y] = ode45 ('Strai...

casi 4 años hace | 1

Respondida
How to store time data separated by colon (e.g 15:59:51:111) as a single data point in a matrix?
Use a table instead of a matrix: Time = datetime({'15:59:51:111'; '15:59:52:098'; '15:59:53:098'}, ... 'InputFormat', 'HH:...

casi 4 años hace | 0

Respondida
I want to find all order-preserving shuffles of two vectors
3 methods for educational purpose: a = [3,1,1]; b = [4,2]; na = numel(a); nb = numel(b); % Indices of elements of the v...

casi 4 años hace | 0

| aceptada

Respondida
how to make this faster?
Some ideas: A = rand(2000, 2000, 5000); B = randi([0,3], 2000, 2000, 5000); tic; A(B==1)=2; toc tic; for k = 1:numel(...

casi 4 años hace | 0

Cargar más