Month: August 2024
Training a neural network for different operating points
Hello,
i want to train a neural network to predict the temperature of an electrical machine in different operating points.
I have input data in the form of:
4×1 Cell, each cell with 101×3 elements
So the first cell contains the data for the first operating point, the second for the second…
And Target Data:
4×1 Cell, each cell with 101×1 elements
Where the first cell contains data for the first operating point, the second…
My question is now, which input layer i should use, so that the data is treated correctly ?Hello,
i want to train a neural network to predict the temperature of an electrical machine in different operating points.
I have input data in the form of:
4×1 Cell, each cell with 101×3 elements
So the first cell contains the data for the first operating point, the second for the second…
And Target Data:
4×1 Cell, each cell with 101×1 elements
Where the first cell contains data for the first operating point, the second…
My question is now, which input layer i should use, so that the data is treated correctly ? Hello,
i want to train a neural network to predict the temperature of an electrical machine in different operating points.
I have input data in the form of:
4×1 Cell, each cell with 101×3 elements
So the first cell contains the data for the first operating point, the second for the second…
And Target Data:
4×1 Cell, each cell with 101×1 elements
Where the first cell contains data for the first operating point, the second…
My question is now, which input layer i should use, so that the data is treated correctly ? matlab, neural network, deep learning MATLAB Answers — New Questions
How to fix Polyspace CodeProver Orange warnings due to + operator
Hello,
I am getting a Polyspace CodeProver Orange Overflow error due to + operator in the attached code
How to fix these issues as we are sure the expression is not going to generate a result that can extend beyond the data type of int32 ?Hello,
I am getting a Polyspace CodeProver Orange Overflow error due to + operator in the attached code
How to fix these issues as we are sure the expression is not going to generate a result that can extend beyond the data type of int32 ? Hello,
I am getting a Polyspace CodeProver Orange Overflow error due to + operator in the attached code
How to fix these issues as we are sure the expression is not going to generate a result that can extend beyond the data type of int32 ? codeprover, orange, overflow, +operator MATLAB Answers — New Questions
Problems with display country image in sharepoint column
Hi,
I have a sharepoint choice-column for selecting a country based on the iso-code (US,BE,NL,ES,…..)
I used json column formatting to display the countryflag :
Hi,I have a sharepoint choice-column for selecting a country based on the iso-code (US,BE,NL,ES,…..) I used json column formatting to display the countryflag :{“$schema”: “https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json”,”elmType”: “div”,”children”: [{“elmType”: “img”,”attributes”: {“src”: “=(‘https://flagcdn.com/w20/’ + toLowerCase(@currentField) + ‘.png’)”}},{“elmType”: “span”,”txtContent”: “@currentField”}]} Problem :when I edit the column : flags are shown.when display in view mode : the flags are not shown, only the two digitcode !! When i look at the source code, something very strange : there are two “src”-parameter in the img-tag ! <img src=”” data-untrusted-src=”https://flagcdn.com/w20/es.png”> Any help will be appreciated Read More
Service Title changing to last attendee booked on
Hi,
We’re currently experiencing some strange behaviour in our scheduled services, whereby the title of the service is automatically updating to the last attendee’s name that booked onto the service.
After further conversations with our users who have independent booking calendars, the same behaviour is being mirrored in each calendar. It’s worth confirming that there have been no changes/configurations made our side, so we’re somewhat unsure if MS has rolled out any product changes that could have impacted or created this error.
Can advise is this is a known issue and what action can be taken to overcome this.
Hi, We’re currently experiencing some strange behaviour in our scheduled services, whereby the title of the service is automatically updating to the last attendee’s name that booked onto the service. After further conversations with our users who have independent booking calendars, the same behaviour is being mirrored in each calendar. It’s worth confirming that there have been no changes/configurations made our side, so we’re somewhat unsure if MS has rolled out any product changes that could have impacted or created this error. Can advise is this is a known issue and what action can be taken to overcome this. Read More
Delete Outlook shared inbox emails older than 45 days
Hello All,
I have an Outlook Shared inbox which receives 5.000 emails everyday. I want to set up power automate flow to delete emails that are older than 45 days.
I hope someone out there would be able to help.
Thanks in advanced.
Hello All, I have an Outlook Shared inbox which receives 5.000 emails everyday. I want to set up power automate flow to delete emails that are older than 45 days. I hope someone out there would be able to help. Thanks in advanced. Read More
Copilot for Microsoft 365: Datacenter Investments, Customer Spend, and Black Hat Exploits
Market analysts question if companies like Microsoft will ever generate a return on their AI investment. That hasn’t stopped Microsoft spending $19 billion in FY24 Q4, so they must be hopeful. Meanwhile, at Black Hat USA 2024, a presentation exploring some vulnerabilities in Copilot should make all Microsoft 365 tenants with Copilot consider how to secure their organization better.
https://practical365.com/copilot-for-microsoft-365-black-hat-2024/
Market analysts question if companies like Microsoft will ever generate a return on their AI investment. That hasn’t stopped Microsoft spending $19 billion in FY24 Q4, so they must be hopeful. Meanwhile, at Black Hat USA 2024, a presentation exploring some vulnerabilities in Copilot should make all Microsoft 365 tenants with Copilot consider how to secure their organization better.
https://practical365.com/copilot-for-microsoft-365-black-hat-2024/ Read More
Help: Highlighting if incorrect value pair in two columns is entered
Hello,
I am very new to power automate, and having some issues to get my head around a problem with conditional formatting or some sort of highlighting a certain condition in my SharePoint list. Maybe someone can help me with the following Szenario or give me some pointers in the right direction.
I have one SharePoint list which is used to track various activities of processes that run on different products.
Column A is of the ‘text’ type and contains a process ID (e.g., ID-111). The column can contain multiple entries of the same process IDColumn B is very similar. It is also of the ‘text’ type and contains the product ID (e.g., P-999). As above the column can contain multiple entries of the same product IDColumn C-… contain various other information, but are irrelevant to the question
What I want is to alert the user via conditional formatting, other forms of highlighting or a dedicated ‘alert’ column if an incorrect ‘process ID <-> product ID’ pair was inserted:
Each process ID is only allowed to have a single product ID associated with it. It is OK to have multiple row entries with the same process ID, but it always has to have the same product ID.
It is also OK to have another process ID associated with the same product ID, but then again the rule above has to apply.
Example:
Process ID // Product ID // Column C // ALERT
ID-111 // P-999 // … // OK
ID-111 // P-999 // … // OK
ID-222 // P-999 // … // OK
ID-222 // P-999 // … // OK
ID-111 // P-888 // … // ERROR
I am quite flexible how the error can be highlighted. It can highlight all rows of the respective process ID or only the newest with the mismatch. Also it does not matter if the product ID field or the process ID field are highlighted or if a dedicated alert column is used.
Previously I have used XLookUp in Excel in combination with help columns to do the trick. But I am somewhat lost at the moment in SharePoint. Some help would be much appreciated 🙂
Please let me know if my explanation was to confusing or if there any open questions:)
Best,
Max
Hello,I am very new to power automate, and having some issues to get my head around a problem with conditional formatting or some sort of highlighting a certain condition in my SharePoint list. Maybe someone can help me with the following Szenario or give me some pointers in the right direction. I have one SharePoint list which is used to track various activities of processes that run on different products.Column A is of the ‘text’ type and contains a process ID (e.g., ID-111). The column can contain multiple entries of the same process IDColumn B is very similar. It is also of the ‘text’ type and contains the product ID (e.g., P-999). As above the column can contain multiple entries of the same product IDColumn C-… contain various other information, but are irrelevant to the questionWhat I want is to alert the user via conditional formatting, other forms of highlighting or a dedicated ‘alert’ column if an incorrect ‘process ID <-> product ID’ pair was inserted: Each process ID is only allowed to have a single product ID associated with it. It is OK to have multiple row entries with the same process ID, but it always has to have the same product ID.It is also OK to have another process ID associated with the same product ID, but then again the rule above has to apply.Example:Process ID // Product ID // Column C // ALERTID-111 // P-999 // … // OKID-111 // P-999 // … // OKID-222 // P-999 // … // OKID-222 // P-999 // … // OKID-111 // P-888 // … // ERROR I am quite flexible how the error can be highlighted. It can highlight all rows of the respective process ID or only the newest with the mismatch. Also it does not matter if the product ID field or the process ID field are highlighted or if a dedicated alert column is used. Previously I have used XLookUp in Excel in combination with help columns to do the trick. But I am somewhat lost at the moment in SharePoint. Some help would be much appreciated 🙂 Please let me know if my explanation was to confusing or if there any open questions:) Best,Max Read More
Table Design Menu ‘greyed out’
One of my Excel Tables is misbehaving.
The rows have stopped auto extending and I cannot access the Table Design Menu; it is greyed out!
WHAT DO I DO, PLEASE?
Many thanks!
One of my Excel Tables is misbehaving.The rows have stopped auto extending and I cannot access the Table Design Menu; it is greyed out!WHAT DO I DO, PLEASE?Many thanks! Read More
Call to inv() function seems to have (undesired) impact on Thread pool or maxNumCompThreads()
I tried to parallelize parts of my code via parpool("Threads"). I also use maxNumCompThreads to limit the maximum CPU utilization. I use a parfor loop which works as expected, meaning that the defined number of cores corresponds to the total cpu utilization shown in the windows taks manager (more or less).
However, if a call to the inv() function appears somewhere in the code before the thread pool is started, then the cpu utilization of the thread pool is unexpectedly higher, although the number of cores and also maxNumCompThreads is not changed. This happens reproducible, until matlab is restarted (and inv() is not called).
To obtain the unexpected behavior the input to inv() must exceed a certain size: inv(rand(10)) –> nothing happens, but inv(rand(1000)) –> CPU utilization of the following parfor loop is unexpectedly high.
A simple script to reproduce the described behavior (in matlab2023b):
maxNumCompThreads(12);
nCores = 12;
%% random parallel code
fprintf("Before inv function call:n");
pp = parpool("Threads", nCores);
for j = 1:3
tic;
parfor (i = 1:100)
A = rand(1000) / rand(1000);
end
toc
pause(2);
end
delete(pp);
%% matrix inverse
Minv = inv(rand(5000));
pause(5);
%% same random parallel code as before –> CPU Utilization goes up to 100%
fprintf("nnAfter inv function call:n");
pp = parpool("Threads", nCores);
for j = 1:3
tic;
parfor (i = 1:100)
A = rand(1000) / rand(1000);
end
toc
pause(2);
end
delete(pp);
On a 56-core machine, the first parallel block runs with < 20% CPU utilization, while the second block has ~50%.
I get the following output:
Before inv function call:
Starting parallel pool (parpool) using the ‘Threads’ profile …
Connected to parallel pool with 12 workers.
Elapsed time is 5.852217 seconds.
Elapsed time is 2.475874 seconds.
Elapsed time is 2.447292 seconds.
Parallel pool using the ‘Threads’ profile is shutting down.
After inv function call:
Starting parallel pool (parpool) using the ‘Threads’ profile …
Connected to parallel pool with 12 workers.
Elapsed time is 23.414892 seconds.
Elapsed time is 24.350276 seconds.
Elapsed time is 23.297744 seconds.
Parallel pool using the ‘Threads’ profile is shutting down.
The increased core utilization for Thread pools stays present until matlab is closed an restarted. With parpool("Processes") I did not observe this behavior.
Am I missing anything here?I tried to parallelize parts of my code via parpool("Threads"). I also use maxNumCompThreads to limit the maximum CPU utilization. I use a parfor loop which works as expected, meaning that the defined number of cores corresponds to the total cpu utilization shown in the windows taks manager (more or less).
However, if a call to the inv() function appears somewhere in the code before the thread pool is started, then the cpu utilization of the thread pool is unexpectedly higher, although the number of cores and also maxNumCompThreads is not changed. This happens reproducible, until matlab is restarted (and inv() is not called).
To obtain the unexpected behavior the input to inv() must exceed a certain size: inv(rand(10)) –> nothing happens, but inv(rand(1000)) –> CPU utilization of the following parfor loop is unexpectedly high.
A simple script to reproduce the described behavior (in matlab2023b):
maxNumCompThreads(12);
nCores = 12;
%% random parallel code
fprintf("Before inv function call:n");
pp = parpool("Threads", nCores);
for j = 1:3
tic;
parfor (i = 1:100)
A = rand(1000) / rand(1000);
end
toc
pause(2);
end
delete(pp);
%% matrix inverse
Minv = inv(rand(5000));
pause(5);
%% same random parallel code as before –> CPU Utilization goes up to 100%
fprintf("nnAfter inv function call:n");
pp = parpool("Threads", nCores);
for j = 1:3
tic;
parfor (i = 1:100)
A = rand(1000) / rand(1000);
end
toc
pause(2);
end
delete(pp);
On a 56-core machine, the first parallel block runs with < 20% CPU utilization, while the second block has ~50%.
I get the following output:
Before inv function call:
Starting parallel pool (parpool) using the ‘Threads’ profile …
Connected to parallel pool with 12 workers.
Elapsed time is 5.852217 seconds.
Elapsed time is 2.475874 seconds.
Elapsed time is 2.447292 seconds.
Parallel pool using the ‘Threads’ profile is shutting down.
After inv function call:
Starting parallel pool (parpool) using the ‘Threads’ profile …
Connected to parallel pool with 12 workers.
Elapsed time is 23.414892 seconds.
Elapsed time is 24.350276 seconds.
Elapsed time is 23.297744 seconds.
Parallel pool using the ‘Threads’ profile is shutting down.
The increased core utilization for Thread pools stays present until matlab is closed an restarted. With parpool("Processes") I did not observe this behavior.
Am I missing anything here? I tried to parallelize parts of my code via parpool("Threads"). I also use maxNumCompThreads to limit the maximum CPU utilization. I use a parfor loop which works as expected, meaning that the defined number of cores corresponds to the total cpu utilization shown in the windows taks manager (more or less).
However, if a call to the inv() function appears somewhere in the code before the thread pool is started, then the cpu utilization of the thread pool is unexpectedly higher, although the number of cores and also maxNumCompThreads is not changed. This happens reproducible, until matlab is restarted (and inv() is not called).
To obtain the unexpected behavior the input to inv() must exceed a certain size: inv(rand(10)) –> nothing happens, but inv(rand(1000)) –> CPU utilization of the following parfor loop is unexpectedly high.
A simple script to reproduce the described behavior (in matlab2023b):
maxNumCompThreads(12);
nCores = 12;
%% random parallel code
fprintf("Before inv function call:n");
pp = parpool("Threads", nCores);
for j = 1:3
tic;
parfor (i = 1:100)
A = rand(1000) / rand(1000);
end
toc
pause(2);
end
delete(pp);
%% matrix inverse
Minv = inv(rand(5000));
pause(5);
%% same random parallel code as before –> CPU Utilization goes up to 100%
fprintf("nnAfter inv function call:n");
pp = parpool("Threads", nCores);
for j = 1:3
tic;
parfor (i = 1:100)
A = rand(1000) / rand(1000);
end
toc
pause(2);
end
delete(pp);
On a 56-core machine, the first parallel block runs with < 20% CPU utilization, while the second block has ~50%.
I get the following output:
Before inv function call:
Starting parallel pool (parpool) using the ‘Threads’ profile …
Connected to parallel pool with 12 workers.
Elapsed time is 5.852217 seconds.
Elapsed time is 2.475874 seconds.
Elapsed time is 2.447292 seconds.
Parallel pool using the ‘Threads’ profile is shutting down.
After inv function call:
Starting parallel pool (parpool) using the ‘Threads’ profile …
Connected to parallel pool with 12 workers.
Elapsed time is 23.414892 seconds.
Elapsed time is 24.350276 seconds.
Elapsed time is 23.297744 seconds.
Parallel pool using the ‘Threads’ profile is shutting down.
The increased core utilization for Thread pools stays present until matlab is closed an restarted. With parpool("Processes") I did not observe this behavior.
Am I missing anything here? maxnumcompthreads, parpool, threads, inv MATLAB Answers — New Questions
Polyspace Orange Scalar Overflow error
Attached the snippet of the scalar orange overflow error reported by polyspace in the project we are working with
how to overcome this orange error as we are sure the reported operation is within sint16 data type result ?Attached the snippet of the scalar orange overflow error reported by polyspace in the project we are working with
how to overcome this orange error as we are sure the reported operation is within sint16 data type result ? Attached the snippet of the scalar orange overflow error reported by polyspace in the project we are working with
how to overcome this orange error as we are sure the reported operation is within sint16 data type result ? codeprover, overflow MATLAB Answers — New Questions
When i call and run this code it just save the Phase1 results in CSvV file not other results .
When i call and run this code it just save the Phase1 results in CSvV file not other results .When i call and run this code it just save the Phase1 results in CSvV file not other results . When i call and run this code it just save the Phase1 results in CSvV file not other results . matlab code, matlab coder MATLAB Answers — New Questions
Problems with display country in sharepoint column
Hi,
I have a sharepoint choice-column for selecting a country based on the iso-code (US,BE,NL,ES,…..)
I used json column formatting to display the countryflag :
Hi,I have a sharepoint choice-column for selecting a country based on the iso-code (US,BE,NL,ES,…..) I used json column formatting to display the countryflag :{“$schema”: “https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json”,”elmType”: “div”,”children”: [{“elmType”: “img”,”attributes”: {“src”: “=(‘https://flagcdn.com/w20/’ + toLowerCase(@currentField) + ‘.png’)”}},{“elmType”: “span”,”txtContent”: “@currentField”}]} Problem :when I edit the column : flags are shown.when display in view mode : the flags are not shown, only the two digitcode !! When i look at the source code, something very strange : there are two “src”-parameter in the img-tag ! <img src=”” data-untrusted-src=”https://flagcdn.com/w20/es.png”> Any help will be appreciated Read More
Does the NR HDL Downlink Receiver work on real raw data?
Hi, I have run the Downlink Receiver code with simulations (generated from the 5G Waveform Generator in MATLAB) and there are no issues there, however, when I try to tun the same code through collected raw data, it has never worked before (it says PSS not found). The collected data is confirmed to contain relevant information by other members of my research team, so the problem does not lie with the data itself. Has anyone faced a similar issue?
Do note that both the SSB detection code and the cell search code do not work.
Thank you so much for your help!
Here is the spectrogram of the data for reference:
Here is my code snippet for reference:
loaded_data = load("srsRAN_octoclock_samprate_2304_10MHz_scscommon_15khz_b200_fdd_n71_pci_1_2phones_onevoice.mat");
num_entries = 2e6; % number of entries to considered
rxWaveform = loaded_data.transposedData(1:num_entries);
minChanBW = 5;
Lmax = 100;
FoCoarse = 0;
rxSampleRate = 10e6;
%% Plot the spectogram of the waveform.
scsSSB = 15;
figure(2); clf;
nfft = round(rxSampleRate/(scsSSB*1e3));
spectrogram(rxWaveform(:,1),ones(nfft,1),0,nfft,’centered’,rxSampleRate,’yaxis’,’MinThreshold’,-110);
title(‘Spectrogram of the Received Waveform (15 KHz)’)
%% Detect SSBs
scsSSB = 15
[pssList,diagnostics] = nrhdlexamples.ssbDetect(rxWaveform,FoCoarse,scsSSB);
% Check if any PSS have been detected
if isempty(pssList)
disp(‘No PSS found during SSB detection.’);
return;
end
disp(‘Detected PSS list:’)
disp(struct2table(pssList));
%% Search for Cells
%%
% Define the frequency range endpoints and subcarrier spacing search space
% and call the |nrhdlexamples.cellSearch| function. The function displays
% information on the search progress as it runs.
% The frequency range endpoints must be multiples of half the
% maximum subcarrier spacing.
frequencyRange = [-120 120];
subcarrierSpacings = [15 30];
[ssBlockInfo,ssbGrid] = nrhdlexamples.cellSearch(rxWaveform,frequencyRange,subcarrierSpacings,struct(…
‘DisplayPlots’,false,…
‘DisplayCommandWindowOutput’,true));
% Check cell search successfully found and demodulated SSB.
if isempty(ssBlockInfo)
disp(‘Cell search failed to find or demodulate SSB.’);
return;
endHi, I have run the Downlink Receiver code with simulations (generated from the 5G Waveform Generator in MATLAB) and there are no issues there, however, when I try to tun the same code through collected raw data, it has never worked before (it says PSS not found). The collected data is confirmed to contain relevant information by other members of my research team, so the problem does not lie with the data itself. Has anyone faced a similar issue?
Do note that both the SSB detection code and the cell search code do not work.
Thank you so much for your help!
Here is the spectrogram of the data for reference:
Here is my code snippet for reference:
loaded_data = load("srsRAN_octoclock_samprate_2304_10MHz_scscommon_15khz_b200_fdd_n71_pci_1_2phones_onevoice.mat");
num_entries = 2e6; % number of entries to considered
rxWaveform = loaded_data.transposedData(1:num_entries);
minChanBW = 5;
Lmax = 100;
FoCoarse = 0;
rxSampleRate = 10e6;
%% Plot the spectogram of the waveform.
scsSSB = 15;
figure(2); clf;
nfft = round(rxSampleRate/(scsSSB*1e3));
spectrogram(rxWaveform(:,1),ones(nfft,1),0,nfft,’centered’,rxSampleRate,’yaxis’,’MinThreshold’,-110);
title(‘Spectrogram of the Received Waveform (15 KHz)’)
%% Detect SSBs
scsSSB = 15
[pssList,diagnostics] = nrhdlexamples.ssbDetect(rxWaveform,FoCoarse,scsSSB);
% Check if any PSS have been detected
if isempty(pssList)
disp(‘No PSS found during SSB detection.’);
return;
end
disp(‘Detected PSS list:’)
disp(struct2table(pssList));
%% Search for Cells
%%
% Define the frequency range endpoints and subcarrier spacing search space
% and call the |nrhdlexamples.cellSearch| function. The function displays
% information on the search progress as it runs.
% The frequency range endpoints must be multiples of half the
% maximum subcarrier spacing.
frequencyRange = [-120 120];
subcarrierSpacings = [15 30];
[ssBlockInfo,ssbGrid] = nrhdlexamples.cellSearch(rxWaveform,frequencyRange,subcarrierSpacings,struct(…
‘DisplayPlots’,false,…
‘DisplayCommandWindowOutput’,true));
% Check cell search successfully found and demodulated SSB.
if isempty(ssBlockInfo)
disp(‘Cell search failed to find or demodulate SSB.’);
return;
end Hi, I have run the Downlink Receiver code with simulations (generated from the 5G Waveform Generator in MATLAB) and there are no issues there, however, when I try to tun the same code through collected raw data, it has never worked before (it says PSS not found). The collected data is confirmed to contain relevant information by other members of my research team, so the problem does not lie with the data itself. Has anyone faced a similar issue?
Do note that both the SSB detection code and the cell search code do not work.
Thank you so much for your help!
Here is the spectrogram of the data for reference:
Here is my code snippet for reference:
loaded_data = load("srsRAN_octoclock_samprate_2304_10MHz_scscommon_15khz_b200_fdd_n71_pci_1_2phones_onevoice.mat");
num_entries = 2e6; % number of entries to considered
rxWaveform = loaded_data.transposedData(1:num_entries);
minChanBW = 5;
Lmax = 100;
FoCoarse = 0;
rxSampleRate = 10e6;
%% Plot the spectogram of the waveform.
scsSSB = 15;
figure(2); clf;
nfft = round(rxSampleRate/(scsSSB*1e3));
spectrogram(rxWaveform(:,1),ones(nfft,1),0,nfft,’centered’,rxSampleRate,’yaxis’,’MinThreshold’,-110);
title(‘Spectrogram of the Received Waveform (15 KHz)’)
%% Detect SSBs
scsSSB = 15
[pssList,diagnostics] = nrhdlexamples.ssbDetect(rxWaveform,FoCoarse,scsSSB);
% Check if any PSS have been detected
if isempty(pssList)
disp(‘No PSS found during SSB detection.’);
return;
end
disp(‘Detected PSS list:’)
disp(struct2table(pssList));
%% Search for Cells
%%
% Define the frequency range endpoints and subcarrier spacing search space
% and call the |nrhdlexamples.cellSearch| function. The function displays
% information on the search progress as it runs.
% The frequency range endpoints must be multiples of half the
% maximum subcarrier spacing.
frequencyRange = [-120 120];
subcarrierSpacings = [15 30];
[ssBlockInfo,ssbGrid] = nrhdlexamples.cellSearch(rxWaveform,frequencyRange,subcarrierSpacings,struct(…
‘DisplayPlots’,false,…
‘DisplayCommandWindowOutput’,true));
% Check cell search successfully found and demodulated SSB.
if isempty(ssBlockInfo)
disp(‘Cell search failed to find or demodulate SSB.’);
return;
end 5g, signal processing, ssb MATLAB Answers — New Questions
MATLAB file on opening showing weird symbols or letters
I had saved a .m file and today when i tried opening the file it just shows some symbols and letters like
MATLAB 5.0 MAT-file, Platform: PCWIN64, Created on: Fri Aug 9 16:22:11 2024
‰ì=³÷<öã{ÏÌdÙ„·ý^Ÿë÷=×õ<ës]çÜÎýñ|¾vÐÑѱÐÑ1ýï‘XLÿ»#nŒÄb%Ãÿ=ðÿߦ£ÿ¿×ŠwMI had saved a .m file and today when i tried opening the file it just shows some symbols and letters like
MATLAB 5.0 MAT-file, Platform: PCWIN64, Created on: Fri Aug 9 16:22:11 2024
‰ì=³÷<öã{ÏÌdÙ„·ý^Ÿë÷=×õ<ës]çÜÎýñ|¾vÐÑѱÐÑ1ýï‘XLÿ»#nŒÄb%Ãÿ=ðÿߦ£ÿ¿×ŠwM I had saved a .m file and today when i tried opening the file it just shows some symbols and letters like
MATLAB 5.0 MAT-file, Platform: PCWIN64, Created on: Fri Aug 9 16:22:11 2024
‰ì=³÷<öã{ÏÌdÙ„·ý^Ÿë÷=×õ<ës]çÜÎýñ|¾vÐÑѱÐÑ1ýï‘XLÿ»#nŒÄb%Ãÿ=ðÿߦ£ÿ¿×ŠwM file opening MATLAB Answers — New Questions
Temperature increase after increasing flowrate
Hello community,
I am modelling a liquid cooling network which i will parameterize based on a real liquid cooling network that i built.
It consistis of a pump, radiator, reservoir and a cooler element beside the tubing and all additional sensors.
In that particular scenario, the pump is turned on after 10 minutes and reaches it full flowrate after 10 seconds, from there it is constantly working till stop.
The cooler is modelled as a tube element hooked up to a thermal network which is applying 10W of power. The simple tubes before and after should modell the natural convection that i see in the real measurements while powering the heater and keeping the pump turned off.
If the pump is turned on at 600s, we can see a temperatue increase in the sensor located after the cooler which i cannot see in the real measurements and rather looks like the decreasing cooler surface temperature.
I would like to understand how this behavior is created and if possible how to avoid it. I can imagine that at the port of the temperature sensor, after the liquid was heated for that time, that the mass of the liquid inside the cooler is virtually passing the temperature sensor and it taking some time to cool down to average coolant temperature. But as a novice in Simscape Modelling I am having a hard time understanding the mechanisms behind that.
I greatly appreciate any suggestion and explanations from you, looking forward to it. Thanks much!Hello community,
I am modelling a liquid cooling network which i will parameterize based on a real liquid cooling network that i built.
It consistis of a pump, radiator, reservoir and a cooler element beside the tubing and all additional sensors.
In that particular scenario, the pump is turned on after 10 minutes and reaches it full flowrate after 10 seconds, from there it is constantly working till stop.
The cooler is modelled as a tube element hooked up to a thermal network which is applying 10W of power. The simple tubes before and after should modell the natural convection that i see in the real measurements while powering the heater and keeping the pump turned off.
If the pump is turned on at 600s, we can see a temperatue increase in the sensor located after the cooler which i cannot see in the real measurements and rather looks like the decreasing cooler surface temperature.
I would like to understand how this behavior is created and if possible how to avoid it. I can imagine that at the port of the temperature sensor, after the liquid was heated for that time, that the mass of the liquid inside the cooler is virtually passing the temperature sensor and it taking some time to cool down to average coolant temperature. But as a novice in Simscape Modelling I am having a hard time understanding the mechanisms behind that.
I greatly appreciate any suggestion and explanations from you, looking forward to it. Thanks much! Hello community,
I am modelling a liquid cooling network which i will parameterize based on a real liquid cooling network that i built.
It consistis of a pump, radiator, reservoir and a cooler element beside the tubing and all additional sensors.
In that particular scenario, the pump is turned on after 10 minutes and reaches it full flowrate after 10 seconds, from there it is constantly working till stop.
The cooler is modelled as a tube element hooked up to a thermal network which is applying 10W of power. The simple tubes before and after should modell the natural convection that i see in the real measurements while powering the heater and keeping the pump turned off.
If the pump is turned on at 600s, we can see a temperatue increase in the sensor located after the cooler which i cannot see in the real measurements and rather looks like the decreasing cooler surface temperature.
I would like to understand how this behavior is created and if possible how to avoid it. I can imagine that at the port of the temperature sensor, after the liquid was heated for that time, that the mass of the liquid inside the cooler is virtually passing the temperature sensor and it taking some time to cool down to average coolant temperature. But as a novice in Simscape Modelling I am having a hard time understanding the mechanisms behind that.
I greatly appreciate any suggestion and explanations from you, looking forward to it. Thanks much! simscape, simulink, scope, model, parameter MATLAB Answers — New Questions
ousterFileReader give no correct result
The function ousterFileReader not work correcty in 2023b with lidar’s FW 2.4. As in json there is a negative shift, and intensivity value shift in row… BugThe function ousterFileReader not work correcty in 2023b with lidar’s FW 2.4. As in json there is a negative shift, and intensivity value shift in row… Bug The function ousterFileReader not work correcty in 2023b with lidar’s FW 2.4. As in json there is a negative shift, and intensivity value shift in row… Bug lidar toolbox, ouster lidar, matlab MATLAB Answers — New Questions
New Outlook/OWA no embedded URLs or Pictures in Meeting-Responses Room-mailbox
In new Outlook and OWA we can not see our embedded URLs and pictures which are included with HTML in meeting response for our room-mailboxes.
<p>Here you can find a room plan: <a href=”url:https://xyz.sharepoint.com/:b:/s/Eeq5Kz2iz9ZKrb4Cu7CFxm0BohbGssa8xDlVkAkD1NZFUQ?e=6m1kUv“> <strong>Room Plan</a></strong></p>
<p>Here you can find a room plan: <div ><img src=”https://xyz.sharepoint.com/:i:/r/sites/Documents/Raumplan%20final.jpg?csf=1&web=1&e=jo9UKm“></img></a></div>’
In legacy Outlook we can click on the embedded URL and the file in the sharepoint site opens.
Is there a way to click on the embedded URL or see the embedded picture in new Outlook?
In new Outlook and OWA we can not see our embedded URLs and pictures which are included with HTML in meeting response for our room-mailboxes. <p>Here you can find a room plan: <a href=”url:https://xyz.sharepoint.com/:b:/s/Eeq5Kz2iz9ZKrb4Cu7CFxm0BohbGssa8xDlVkAkD1NZFUQ?e=6m1kUv”> <strong>Room Plan</a></strong></p><p>Here you can find a room plan: <div ><img src=”https://xyz.sharepoint.com/:i:/r/sites/Documents/Raumplan%20final.jpg?csf=1&web=1&e=jo9UKm”></img></a></div>’In legacy Outlook we can click on the embedded URL and the file in the sharepoint site opens.Is there a way to click on the embedded URL or see the embedded picture in new Outlook? Read More
Merging MS 365 Charity Accounts
We have 3 charities that have come together and would like all their e-mails etc under one MS 365 account. Currently they all have their own charity account. Is it possible to merge all 3 accounts into one.
We have 3 charities that have come together and would like all their e-mails etc under one MS 365 account. Currently they all have their own charity account. Is it possible to merge all 3 accounts into one. Read More